@gct-paas/api 6.0.0-dev.10 → 6.0.0-dev.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.min.js +1 -1
- package/es/apaas/service/api-config.mjs +127 -0
- package/es/apaas/service/apis/api.service.d.ts +0 -4
- package/es/apaas/service/apis/app-global-settings.service.d.ts +0 -4
- package/es/apaas/service/apis/category.service.d.ts +0 -8
- package/es/apaas/service/apis/custom-field.service.d.ts +125 -0
- package/es/apaas/service/apis/custom-object.service.d.ts +71 -0
- package/es/apaas/service/apis/edhr-instance.service.d.ts +4 -8
- package/es/apaas/service/apis/excel.service.d.ts +0 -12
- package/es/apaas/service/apis/model-meta.service.d.ts +16 -0
- package/es/apaas/service/apis/online-form-instance.service.d.ts +8 -8
- package/es/apaas/service/apis/online-form-tmpl.service.d.ts +2 -2
- package/es/apaas/service/apis/transaction.service.d.ts +11 -0
- package/es/apaas/service/entities.d.ts +933 -167
- package/es/apaas/service/index.d.ts +4 -0
- package/es/platform/service/api-config.mjs +70 -0
- package/es/platform/service/apis/api.service.d.ts +6 -0
- package/es/platform/service/apis/app.service.d.ts +0 -4
- package/es/platform/service/apis/dashboard.service.d.ts +0 -4
- package/es/platform/service/apis/ocr-model.service.d.ts +106 -0
- package/es/platform/service/apis/org.service.d.ts +0 -4
- package/es/platform/service/apis/plat.service.d.ts +6 -0
- package/es/platform/service/apis/tenant.service.d.ts +0 -4
- package/es/platform/service/entities.d.ts +148 -0
- package/es/platform/service/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -2911,6 +2911,12 @@ export interface CategoryResponse {
|
|
|
2911
2911
|
sysBuiltin?: number;
|
|
2912
2912
|
}
|
|
2913
2913
|
export interface CheckPwdRequest {
|
|
2914
|
+
/**
|
|
2915
|
+
*
|
|
2916
|
+
*
|
|
2917
|
+
* @type string
|
|
2918
|
+
*/
|
|
2919
|
+
code?: string;
|
|
2914
2920
|
/**
|
|
2915
2921
|
*
|
|
2916
2922
|
*
|
|
@@ -4078,171 +4084,501 @@ export interface CrossReportConditionDTO {
|
|
|
4078
4084
|
*/
|
|
4079
4085
|
sorts?: Sort[];
|
|
4080
4086
|
}
|
|
4081
|
-
export interface
|
|
4087
|
+
export interface CustomFieldEntity {
|
|
4082
4088
|
/**
|
|
4083
|
-
*
|
|
4089
|
+
*
|
|
4084
4090
|
*
|
|
4085
4091
|
* @type string
|
|
4086
4092
|
*/
|
|
4087
|
-
|
|
4093
|
+
bizType?: string;
|
|
4088
4094
|
/**
|
|
4089
|
-
*
|
|
4095
|
+
*
|
|
4090
4096
|
*
|
|
4091
4097
|
* @type string
|
|
4092
4098
|
*/
|
|
4093
|
-
|
|
4099
|
+
createOrgId?: string;
|
|
4094
4100
|
/**
|
|
4095
|
-
*
|
|
4101
|
+
*
|
|
4096
4102
|
*
|
|
4097
4103
|
* @type string
|
|
4098
4104
|
*/
|
|
4099
|
-
|
|
4105
|
+
createTime?: string;
|
|
4100
4106
|
/**
|
|
4101
|
-
*
|
|
4107
|
+
*
|
|
4102
4108
|
*
|
|
4103
4109
|
* @type string
|
|
4104
4110
|
*/
|
|
4105
|
-
|
|
4111
|
+
createUserId?: string;
|
|
4106
4112
|
/**
|
|
4107
|
-
*
|
|
4113
|
+
*
|
|
4108
4114
|
*
|
|
4109
4115
|
* @type string
|
|
4110
4116
|
*/
|
|
4111
|
-
|
|
4117
|
+
createUserName?: string;
|
|
4112
4118
|
/**
|
|
4113
|
-
* 联系方式
|
|
4114
4119
|
*
|
|
4115
|
-
*
|
|
4120
|
+
*
|
|
4121
|
+
* @type number
|
|
4116
4122
|
*/
|
|
4117
|
-
|
|
4123
|
+
dataVersion?: number;
|
|
4118
4124
|
/**
|
|
4119
|
-
*
|
|
4125
|
+
*
|
|
4120
4126
|
*
|
|
4121
4127
|
* @type string
|
|
4122
4128
|
*/
|
|
4123
4129
|
description?: string;
|
|
4124
4130
|
/**
|
|
4125
|
-
*
|
|
4131
|
+
*
|
|
4126
4132
|
*
|
|
4127
4133
|
* @type string
|
|
4128
4134
|
*/
|
|
4129
|
-
|
|
4135
|
+
i18nConfig?: string;
|
|
4130
4136
|
/**
|
|
4131
|
-
*
|
|
4137
|
+
*
|
|
4132
4138
|
*
|
|
4133
4139
|
* @type string
|
|
4134
4140
|
*/
|
|
4135
|
-
|
|
4141
|
+
id?: string;
|
|
4136
4142
|
/**
|
|
4137
|
-
*
|
|
4143
|
+
*
|
|
4138
4144
|
*
|
|
4139
4145
|
* @type string
|
|
4140
4146
|
*/
|
|
4141
|
-
|
|
4147
|
+
key?: string;
|
|
4142
4148
|
/**
|
|
4143
|
-
*
|
|
4149
|
+
*
|
|
4144
4150
|
*
|
|
4145
4151
|
* @type string
|
|
4146
4152
|
*/
|
|
4147
|
-
|
|
4153
|
+
modifyOrgId?: string;
|
|
4148
4154
|
/**
|
|
4149
|
-
*
|
|
4155
|
+
*
|
|
4150
4156
|
*
|
|
4151
4157
|
* @type string
|
|
4152
4158
|
*/
|
|
4153
|
-
|
|
4159
|
+
modifyTime?: string;
|
|
4154
4160
|
/**
|
|
4155
|
-
*
|
|
4161
|
+
*
|
|
4156
4162
|
*
|
|
4157
4163
|
* @type string
|
|
4158
4164
|
*/
|
|
4159
|
-
|
|
4165
|
+
modifyUserId?: string;
|
|
4160
4166
|
/**
|
|
4161
|
-
*
|
|
4167
|
+
*
|
|
4162
4168
|
*
|
|
4163
4169
|
* @type string
|
|
4164
4170
|
*/
|
|
4165
|
-
|
|
4171
|
+
modifyUserName?: string;
|
|
4166
4172
|
/**
|
|
4167
|
-
*
|
|
4173
|
+
*
|
|
4168
4174
|
*
|
|
4169
4175
|
* @type string
|
|
4170
4176
|
*/
|
|
4171
|
-
|
|
4177
|
+
name?: string;
|
|
4172
4178
|
/**
|
|
4173
|
-
*
|
|
4179
|
+
*
|
|
4180
|
+
*
|
|
4181
|
+
* @type number
|
|
4182
|
+
*/
|
|
4183
|
+
refNum?: number;
|
|
4184
|
+
/**
|
|
4185
|
+
*
|
|
4174
4186
|
*
|
|
4175
4187
|
* @type string
|
|
4176
4188
|
*/
|
|
4177
|
-
|
|
4189
|
+
tenantId?: string;
|
|
4178
4190
|
/**
|
|
4179
|
-
*
|
|
4191
|
+
*
|
|
4192
|
+
*
|
|
4193
|
+
* @type number
|
|
4194
|
+
*/
|
|
4195
|
+
traceEnabled?: number;
|
|
4196
|
+
/**
|
|
4197
|
+
*
|
|
4180
4198
|
*
|
|
4181
4199
|
* @type string
|
|
4182
4200
|
*/
|
|
4183
|
-
|
|
4201
|
+
type?: string;
|
|
4202
|
+
}
|
|
4203
|
+
export interface CustomObjectEntity {
|
|
4184
4204
|
/**
|
|
4185
|
-
*
|
|
4205
|
+
*
|
|
4186
4206
|
*
|
|
4187
4207
|
* @type string
|
|
4188
4208
|
*/
|
|
4189
|
-
|
|
4209
|
+
createOrgId?: string;
|
|
4190
4210
|
/**
|
|
4191
|
-
*
|
|
4211
|
+
*
|
|
4192
4212
|
*
|
|
4193
4213
|
* @type string
|
|
4194
4214
|
*/
|
|
4195
|
-
|
|
4215
|
+
createTime?: string;
|
|
4196
4216
|
/**
|
|
4197
|
-
*
|
|
4217
|
+
*
|
|
4198
4218
|
*
|
|
4199
4219
|
* @type string
|
|
4200
4220
|
*/
|
|
4201
|
-
|
|
4221
|
+
createUserId?: string;
|
|
4202
4222
|
/**
|
|
4203
|
-
*
|
|
4223
|
+
*
|
|
4204
4224
|
*
|
|
4205
4225
|
* @type string
|
|
4206
4226
|
*/
|
|
4207
|
-
|
|
4227
|
+
createUserName?: string;
|
|
4208
4228
|
/**
|
|
4209
|
-
*
|
|
4229
|
+
*
|
|
4230
|
+
*
|
|
4231
|
+
* @type number
|
|
4232
|
+
*/
|
|
4233
|
+
dataVersion?: number;
|
|
4234
|
+
/**
|
|
4235
|
+
*
|
|
4210
4236
|
*
|
|
4211
4237
|
* @type string
|
|
4212
4238
|
*/
|
|
4213
|
-
|
|
4239
|
+
description?: string;
|
|
4214
4240
|
/**
|
|
4215
|
-
*
|
|
4241
|
+
*
|
|
4242
|
+
*
|
|
4243
|
+
* @type CustomObjectItemEntity[]
|
|
4244
|
+
*/
|
|
4245
|
+
entries?: CustomObjectItemEntity[];
|
|
4246
|
+
/**
|
|
4247
|
+
*
|
|
4216
4248
|
*
|
|
4217
4249
|
* @type string
|
|
4218
4250
|
*/
|
|
4219
|
-
|
|
4251
|
+
id?: string;
|
|
4220
4252
|
/**
|
|
4221
|
-
*
|
|
4253
|
+
*
|
|
4222
4254
|
*
|
|
4223
4255
|
* @type string
|
|
4224
4256
|
*/
|
|
4225
|
-
|
|
4257
|
+
key?: string;
|
|
4258
|
+
/**
|
|
4259
|
+
*
|
|
4260
|
+
*
|
|
4261
|
+
* @type string
|
|
4262
|
+
*/
|
|
4263
|
+
modifyOrgId?: string;
|
|
4264
|
+
/**
|
|
4265
|
+
*
|
|
4266
|
+
*
|
|
4267
|
+
* @type string
|
|
4268
|
+
*/
|
|
4269
|
+
modifyTime?: string;
|
|
4226
4270
|
/**
|
|
4227
|
-
*
|
|
4271
|
+
*
|
|
4272
|
+
*
|
|
4273
|
+
* @type string
|
|
4274
|
+
*/
|
|
4275
|
+
modifyUserId?: string;
|
|
4276
|
+
/**
|
|
4277
|
+
*
|
|
4278
|
+
*
|
|
4279
|
+
* @type string
|
|
4280
|
+
*/
|
|
4281
|
+
modifyUserName?: string;
|
|
4282
|
+
/**
|
|
4283
|
+
*
|
|
4284
|
+
*
|
|
4285
|
+
* @type string
|
|
4286
|
+
*/
|
|
4287
|
+
name?: string;
|
|
4288
|
+
/**
|
|
4289
|
+
*
|
|
4290
|
+
*
|
|
4291
|
+
* @type string
|
|
4292
|
+
*/
|
|
4293
|
+
tenantId?: string;
|
|
4294
|
+
}
|
|
4295
|
+
export interface CustomObjectItemEntity {
|
|
4296
|
+
/**
|
|
4297
|
+
*
|
|
4298
|
+
*
|
|
4299
|
+
* @type string
|
|
4300
|
+
*/
|
|
4301
|
+
bizType?: string;
|
|
4302
|
+
/**
|
|
4303
|
+
*
|
|
4304
|
+
*
|
|
4305
|
+
* @type string
|
|
4306
|
+
*/
|
|
4307
|
+
createOrgId?: string;
|
|
4308
|
+
/**
|
|
4309
|
+
*
|
|
4310
|
+
*
|
|
4311
|
+
* @type string
|
|
4312
|
+
*/
|
|
4313
|
+
createTime?: string;
|
|
4314
|
+
/**
|
|
4315
|
+
*
|
|
4316
|
+
*
|
|
4317
|
+
* @type string
|
|
4318
|
+
*/
|
|
4319
|
+
createUserId?: string;
|
|
4320
|
+
/**
|
|
4321
|
+
*
|
|
4322
|
+
*
|
|
4323
|
+
* @type string
|
|
4324
|
+
*/
|
|
4325
|
+
createUserName?: string;
|
|
4326
|
+
/**
|
|
4327
|
+
*
|
|
4228
4328
|
*
|
|
4229
4329
|
* @type number
|
|
4230
4330
|
*/
|
|
4231
|
-
|
|
4331
|
+
dataVersion?: number;
|
|
4232
4332
|
/**
|
|
4233
|
-
*
|
|
4333
|
+
*
|
|
4334
|
+
*
|
|
4335
|
+
* @type string
|
|
4336
|
+
*/
|
|
4337
|
+
id?: string;
|
|
4338
|
+
/**
|
|
4339
|
+
*
|
|
4340
|
+
*
|
|
4341
|
+
* @type string
|
|
4342
|
+
*/
|
|
4343
|
+
key?: string;
|
|
4344
|
+
/**
|
|
4345
|
+
*
|
|
4346
|
+
*
|
|
4347
|
+
* @type string
|
|
4348
|
+
*/
|
|
4349
|
+
modifyOrgId?: string;
|
|
4350
|
+
/**
|
|
4351
|
+
*
|
|
4352
|
+
*
|
|
4353
|
+
* @type string
|
|
4354
|
+
*/
|
|
4355
|
+
modifyTime?: string;
|
|
4356
|
+
/**
|
|
4357
|
+
*
|
|
4358
|
+
*
|
|
4359
|
+
* @type string
|
|
4360
|
+
*/
|
|
4361
|
+
modifyUserId?: string;
|
|
4362
|
+
/**
|
|
4363
|
+
*
|
|
4364
|
+
*
|
|
4365
|
+
* @type string
|
|
4366
|
+
*/
|
|
4367
|
+
modifyUserName?: string;
|
|
4368
|
+
/**
|
|
4369
|
+
*
|
|
4370
|
+
*
|
|
4371
|
+
* @type string
|
|
4372
|
+
*/
|
|
4373
|
+
name?: string;
|
|
4374
|
+
/**
|
|
4375
|
+
*
|
|
4376
|
+
*
|
|
4377
|
+
* @type string
|
|
4378
|
+
*/
|
|
4379
|
+
refFieldKey?: string;
|
|
4380
|
+
/**
|
|
4381
|
+
*
|
|
4382
|
+
*
|
|
4383
|
+
* @type string
|
|
4384
|
+
*/
|
|
4385
|
+
refMasterId?: string;
|
|
4386
|
+
/**
|
|
4387
|
+
*
|
|
4388
|
+
*
|
|
4389
|
+
* @type string
|
|
4390
|
+
*/
|
|
4391
|
+
refModelKey?: string;
|
|
4392
|
+
/**
|
|
4393
|
+
*
|
|
4234
4394
|
*
|
|
4235
4395
|
* @type number
|
|
4236
4396
|
*/
|
|
4237
|
-
|
|
4397
|
+
required?: number;
|
|
4238
4398
|
/**
|
|
4239
|
-
*
|
|
4399
|
+
*
|
|
4240
4400
|
*
|
|
4241
4401
|
* @type string
|
|
4242
4402
|
*/
|
|
4243
|
-
|
|
4403
|
+
tenantId?: string;
|
|
4404
|
+
/**
|
|
4405
|
+
*
|
|
4406
|
+
*
|
|
4407
|
+
* @type string
|
|
4408
|
+
*/
|
|
4409
|
+
type?: string;
|
|
4410
|
+
/**
|
|
4411
|
+
*
|
|
4412
|
+
*
|
|
4413
|
+
* @type string
|
|
4414
|
+
*/
|
|
4415
|
+
uniqueConstraint?: string;
|
|
4244
4416
|
}
|
|
4245
|
-
export interface
|
|
4417
|
+
export interface CustomerComplaintRequest {
|
|
4418
|
+
/**
|
|
4419
|
+
* 抱怨地址
|
|
4420
|
+
*
|
|
4421
|
+
* @type string
|
|
4422
|
+
*/
|
|
4423
|
+
address?: string;
|
|
4424
|
+
/**
|
|
4425
|
+
* 是否启动不良事件程序
|
|
4426
|
+
*
|
|
4427
|
+
* @type string
|
|
4428
|
+
*/
|
|
4429
|
+
adverseProcedure?: string;
|
|
4430
|
+
/**
|
|
4431
|
+
* 抱怨附件信息
|
|
4432
|
+
*
|
|
4433
|
+
* @type string
|
|
4434
|
+
*/
|
|
4435
|
+
attachment?: string;
|
|
4436
|
+
/**
|
|
4437
|
+
* 批号
|
|
4438
|
+
*
|
|
4439
|
+
* @type string
|
|
4440
|
+
*/
|
|
4441
|
+
batchNumber?: string;
|
|
4442
|
+
/**
|
|
4443
|
+
* 抱怨数量
|
|
4444
|
+
*
|
|
4445
|
+
* @type string
|
|
4446
|
+
*/
|
|
4447
|
+
complaintCount?: string;
|
|
4448
|
+
/**
|
|
4449
|
+
* 联系方式
|
|
4450
|
+
*
|
|
4451
|
+
* @type string
|
|
4452
|
+
*/
|
|
4453
|
+
contact?: string;
|
|
4454
|
+
/**
|
|
4455
|
+
* 抱怨描述
|
|
4456
|
+
*
|
|
4457
|
+
* @type string
|
|
4458
|
+
*/
|
|
4459
|
+
description?: string;
|
|
4460
|
+
/**
|
|
4461
|
+
* 致死
|
|
4462
|
+
*
|
|
4463
|
+
* @type string
|
|
4464
|
+
*/
|
|
4465
|
+
fatal?: string;
|
|
4466
|
+
/**
|
|
4467
|
+
* 第一次使用
|
|
4468
|
+
*
|
|
4469
|
+
* @type string
|
|
4470
|
+
*/
|
|
4471
|
+
firsttimeUse?: string;
|
|
4472
|
+
/**
|
|
4473
|
+
* 实例Id
|
|
4474
|
+
*
|
|
4475
|
+
* @type string
|
|
4476
|
+
*/
|
|
4477
|
+
instanceId?: string;
|
|
4478
|
+
/**
|
|
4479
|
+
* 采取措施避免损伤
|
|
4480
|
+
*
|
|
4481
|
+
* @type string
|
|
4482
|
+
*/
|
|
4483
|
+
measuresAvoidDamage?: string;
|
|
4484
|
+
/**
|
|
4485
|
+
* 抱怨发生时刻
|
|
4486
|
+
*
|
|
4487
|
+
* @type string
|
|
4488
|
+
*/
|
|
4489
|
+
occurrenceTime?: string;
|
|
4490
|
+
/**
|
|
4491
|
+
* 其他信息
|
|
4492
|
+
*
|
|
4493
|
+
* @type string
|
|
4494
|
+
*/
|
|
4495
|
+
otherInfo?: string;
|
|
4496
|
+
/**
|
|
4497
|
+
* 病人情况
|
|
4498
|
+
*
|
|
4499
|
+
* @type string
|
|
4500
|
+
*/
|
|
4501
|
+
patientCondition?: string;
|
|
4502
|
+
/**
|
|
4503
|
+
* 抱怨人
|
|
4504
|
+
*
|
|
4505
|
+
* @type string
|
|
4506
|
+
*/
|
|
4507
|
+
person?: string;
|
|
4508
|
+
/**
|
|
4509
|
+
* 产品名称
|
|
4510
|
+
*
|
|
4511
|
+
* @type string
|
|
4512
|
+
*/
|
|
4513
|
+
productName?: string;
|
|
4514
|
+
/**
|
|
4515
|
+
* 抱怨接收日期
|
|
4516
|
+
*
|
|
4517
|
+
* @type string
|
|
4518
|
+
*/
|
|
4519
|
+
receiveDate?: string;
|
|
4520
|
+
/**
|
|
4521
|
+
* 记录Id
|
|
4522
|
+
*
|
|
4523
|
+
* @type string
|
|
4524
|
+
*/
|
|
4525
|
+
recordId?: string;
|
|
4526
|
+
/**
|
|
4527
|
+
* 抱怨地区
|
|
4528
|
+
*
|
|
4529
|
+
* @type string
|
|
4530
|
+
*/
|
|
4531
|
+
region?: string;
|
|
4532
|
+
/**
|
|
4533
|
+
* 重复使用
|
|
4534
|
+
*
|
|
4535
|
+
* @type string
|
|
4536
|
+
*/
|
|
4537
|
+
repeatUse?: string;
|
|
4538
|
+
/**
|
|
4539
|
+
* 报告地址
|
|
4540
|
+
*
|
|
4541
|
+
* @type string
|
|
4542
|
+
*/
|
|
4543
|
+
reportUrl?: string;
|
|
4544
|
+
/**
|
|
4545
|
+
* 严重损伤
|
|
4546
|
+
*
|
|
4547
|
+
* @type string
|
|
4548
|
+
*/
|
|
4549
|
+
severeLoss?: string;
|
|
4550
|
+
/**
|
|
4551
|
+
* 来源
|
|
4552
|
+
*
|
|
4553
|
+
* @type string
|
|
4554
|
+
*/
|
|
4555
|
+
source?: string;
|
|
4556
|
+
/**
|
|
4557
|
+
* 规格型号
|
|
4558
|
+
*
|
|
4559
|
+
* @type string
|
|
4560
|
+
*/
|
|
4561
|
+
specificationModel?: string;
|
|
4562
|
+
/**
|
|
4563
|
+
* 状态
|
|
4564
|
+
*
|
|
4565
|
+
* @type number
|
|
4566
|
+
*/
|
|
4567
|
+
status?: number;
|
|
4568
|
+
/**
|
|
4569
|
+
* 是否同步
|
|
4570
|
+
*
|
|
4571
|
+
* @type number
|
|
4572
|
+
*/
|
|
4573
|
+
synced?: number;
|
|
4574
|
+
/**
|
|
4575
|
+
* UDI
|
|
4576
|
+
*
|
|
4577
|
+
* @type string
|
|
4578
|
+
*/
|
|
4579
|
+
udi?: string;
|
|
4580
|
+
}
|
|
4581
|
+
export interface CustomerComplaintResponse {
|
|
4246
4582
|
/**
|
|
4247
4583
|
* 抱怨地址
|
|
4248
4584
|
*
|
|
@@ -10160,6 +10496,32 @@ export interface ExtFieldConfig {
|
|
|
10160
10496
|
*/
|
|
10161
10497
|
type?: number;
|
|
10162
10498
|
}
|
|
10499
|
+
export interface Failure {
|
|
10500
|
+
/**
|
|
10501
|
+
* 对象在文件中的序号,从1开始
|
|
10502
|
+
*
|
|
10503
|
+
* @type number
|
|
10504
|
+
*/
|
|
10505
|
+
index?: number;
|
|
10506
|
+
/**
|
|
10507
|
+
* 对象key
|
|
10508
|
+
*
|
|
10509
|
+
* @type string
|
|
10510
|
+
*/
|
|
10511
|
+
key?: string;
|
|
10512
|
+
/**
|
|
10513
|
+
* 失败原因
|
|
10514
|
+
*
|
|
10515
|
+
* @type string
|
|
10516
|
+
*/
|
|
10517
|
+
message?: string;
|
|
10518
|
+
/**
|
|
10519
|
+
* 对象名称
|
|
10520
|
+
*
|
|
10521
|
+
* @type string
|
|
10522
|
+
*/
|
|
10523
|
+
name?: string;
|
|
10524
|
+
}
|
|
10163
10525
|
export interface FieldAttribute {
|
|
10164
10526
|
/**
|
|
10165
10527
|
* 关联主键字段的绑定信息,格式:关联模型key
|
|
@@ -10385,6 +10747,12 @@ export interface FieldMeta {
|
|
|
10385
10747
|
* @type number
|
|
10386
10748
|
*/
|
|
10387
10749
|
backendOnly?: number;
|
|
10750
|
+
/**
|
|
10751
|
+
* 所属字段
|
|
10752
|
+
*
|
|
10753
|
+
* @type string
|
|
10754
|
+
*/
|
|
10755
|
+
belongingField?: string;
|
|
10388
10756
|
/**
|
|
10389
10757
|
* 所属对象
|
|
10390
10758
|
*
|
|
@@ -10565,6 +10933,12 @@ export interface FieldMeta {
|
|
|
10565
10933
|
* @type number
|
|
10566
10934
|
*/
|
|
10567
10935
|
sysBuiltin?: number;
|
|
10936
|
+
/**
|
|
10937
|
+
* 字段建模是否启用追溯
|
|
10938
|
+
*
|
|
10939
|
+
* @type number
|
|
10940
|
+
*/
|
|
10941
|
+
traceEnabled?: number;
|
|
10568
10942
|
/**
|
|
10569
10943
|
* 数据类型
|
|
10570
10944
|
*
|
|
@@ -10619,6 +10993,12 @@ export interface FieldMetaDTO {
|
|
|
10619
10993
|
* @type number
|
|
10620
10994
|
*/
|
|
10621
10995
|
backendOnly?: number;
|
|
10996
|
+
/**
|
|
10997
|
+
* 所属字段
|
|
10998
|
+
*
|
|
10999
|
+
* @type string
|
|
11000
|
+
*/
|
|
11001
|
+
belongingField?: string;
|
|
10622
11002
|
/**
|
|
10623
11003
|
* 所属对象
|
|
10624
11004
|
*
|
|
@@ -10865,6 +11245,12 @@ export interface FieldMetaDTO {
|
|
|
10865
11245
|
* @type number
|
|
10866
11246
|
*/
|
|
10867
11247
|
sysBuiltin?: number;
|
|
11248
|
+
/**
|
|
11249
|
+
* 字段建模是否启用追溯
|
|
11250
|
+
*
|
|
11251
|
+
* @type number
|
|
11252
|
+
*/
|
|
11253
|
+
traceEnabled?: number;
|
|
10868
11254
|
/**
|
|
10869
11255
|
* 数据类型
|
|
10870
11256
|
*
|
|
@@ -11147,6 +11533,12 @@ export interface FieldMetaResponse {
|
|
|
11147
11533
|
type?: string;
|
|
11148
11534
|
}
|
|
11149
11535
|
export interface FieldMetaVO {
|
|
11536
|
+
/**
|
|
11537
|
+
* 所属字段
|
|
11538
|
+
*
|
|
11539
|
+
* @type string
|
|
11540
|
+
*/
|
|
11541
|
+
belongingField?: string;
|
|
11150
11542
|
/**
|
|
11151
11543
|
* 所属对象
|
|
11152
11544
|
*
|
|
@@ -11237,6 +11629,12 @@ export interface FieldMetaVO {
|
|
|
11237
11629
|
* @type IObject
|
|
11238
11630
|
*/
|
|
11239
11631
|
specificConfig?: IObject;
|
|
11632
|
+
/**
|
|
11633
|
+
* 字段建模是否启用追溯
|
|
11634
|
+
*
|
|
11635
|
+
* @type number
|
|
11636
|
+
*/
|
|
11637
|
+
traceEnabled?: number;
|
|
11240
11638
|
/**
|
|
11241
11639
|
* 数据类型 (primary_key/主键,tenant/租户关联,ref_master_id/关联主键,text/短文本,long_text/长文本,integer/整数,long/长整数,decimal/精度小数,boolean/布尔,binary/二进制流,date/日期,time/时间,date_time/日期时间,user_multi/人员多选,org_multi/部门多选,image/图片,attachment/附件enum/枚举,serial/序列号,ref/引用关联,master_slave/主子关联,enum_multi/枚举多选,ref_multi/模型多选,expression/公式,agg/汇总,esop/E-SOP,expression_condition/公式条件)
|
|
11242
11640
|
*
|
|
@@ -11353,6 +11751,12 @@ export interface FileTaskDTO {
|
|
|
11353
11751
|
* @type string
|
|
11354
11752
|
*/
|
|
11355
11753
|
materialNo?: string;
|
|
11754
|
+
/**
|
|
11755
|
+
* 是否填报内容区底色
|
|
11756
|
+
*
|
|
11757
|
+
* @type boolean
|
|
11758
|
+
*/
|
|
11759
|
+
showPrintFieldBg?: boolean;
|
|
11356
11760
|
/**
|
|
11357
11761
|
* 模板实例id
|
|
11358
11762
|
*
|
|
@@ -11623,6 +12027,12 @@ export interface FormRelateDTO {
|
|
|
11623
12027
|
* @type string
|
|
11624
12028
|
*/
|
|
11625
12029
|
officeType?: string;
|
|
12030
|
+
/**
|
|
12031
|
+
* 线下编码
|
|
12032
|
+
*
|
|
12033
|
+
* @type string
|
|
12034
|
+
*/
|
|
12035
|
+
offlineCode?: string;
|
|
11626
12036
|
/**
|
|
11627
12037
|
* 线下版本号
|
|
11628
12038
|
*
|
|
@@ -13336,6 +13746,32 @@ export interface JoinOnExp {
|
|
|
13336
13746
|
export interface JsonNode {
|
|
13337
13747
|
// 暂无属性
|
|
13338
13748
|
}
|
|
13749
|
+
export interface KeyNameDTO {
|
|
13750
|
+
/**
|
|
13751
|
+
* key
|
|
13752
|
+
*
|
|
13753
|
+
* @type string
|
|
13754
|
+
*/
|
|
13755
|
+
key?: string;
|
|
13756
|
+
/**
|
|
13757
|
+
* 名称
|
|
13758
|
+
*
|
|
13759
|
+
* @type string
|
|
13760
|
+
*/
|
|
13761
|
+
name?: string;
|
|
13762
|
+
/**
|
|
13763
|
+
* 关联模型脚本key
|
|
13764
|
+
*
|
|
13765
|
+
* @type string
|
|
13766
|
+
*/
|
|
13767
|
+
refKey?: string;
|
|
13768
|
+
/**
|
|
13769
|
+
* 关联模型脚本名称
|
|
13770
|
+
*
|
|
13771
|
+
* @type string
|
|
13772
|
+
*/
|
|
13773
|
+
refName?: string;
|
|
13774
|
+
}
|
|
13339
13775
|
export interface LabelBtwDesigner {
|
|
13340
13776
|
/**
|
|
13341
13777
|
*
|
|
@@ -16952,6 +17388,52 @@ export interface ModelPermissionRelationResponse {
|
|
|
16952
17388
|
*/
|
|
16953
17389
|
sortNum?: number;
|
|
16954
17390
|
}
|
|
17391
|
+
export interface ModelRelationDTO {
|
|
17392
|
+
/**
|
|
17393
|
+
* 分类ID
|
|
17394
|
+
*
|
|
17395
|
+
* @type string
|
|
17396
|
+
*/
|
|
17397
|
+
categoryId?: string;
|
|
17398
|
+
/**
|
|
17399
|
+
*
|
|
17400
|
+
*
|
|
17401
|
+
* @type string[]
|
|
17402
|
+
*/
|
|
17403
|
+
ids?: string[];
|
|
17404
|
+
}
|
|
17405
|
+
export interface ModelRelationInfo {
|
|
17406
|
+
/**
|
|
17407
|
+
*
|
|
17408
|
+
*
|
|
17409
|
+
* @type KeyNameDTO[]
|
|
17410
|
+
*/
|
|
17411
|
+
bizScriptList?: KeyNameDTO[];
|
|
17412
|
+
/**
|
|
17413
|
+
*
|
|
17414
|
+
*
|
|
17415
|
+
* @type KeyNameDTO[]
|
|
17416
|
+
*/
|
|
17417
|
+
enumModelList?: KeyNameDTO[];
|
|
17418
|
+
/**
|
|
17419
|
+
*
|
|
17420
|
+
*
|
|
17421
|
+
* @type KeyNameDTO[]
|
|
17422
|
+
*/
|
|
17423
|
+
eventScriptList?: KeyNameDTO[];
|
|
17424
|
+
/**
|
|
17425
|
+
*
|
|
17426
|
+
*
|
|
17427
|
+
* @type KeyNameDTO[]
|
|
17428
|
+
*/
|
|
17429
|
+
refModelList?: KeyNameDTO[];
|
|
17430
|
+
/**
|
|
17431
|
+
*
|
|
17432
|
+
*
|
|
17433
|
+
* @type KeyNameDTO[]
|
|
17434
|
+
*/
|
|
17435
|
+
subModelList?: KeyNameDTO[];
|
|
17436
|
+
}
|
|
16955
17437
|
export interface ModelRelationResponse {
|
|
16956
17438
|
/**
|
|
16957
17439
|
* 分类id
|
|
@@ -17737,6 +18219,12 @@ export interface OfProcessSaveRequest {
|
|
|
17737
18219
|
* @type string
|
|
17738
18220
|
*/
|
|
17739
18221
|
opinion?: string;
|
|
18222
|
+
/**
|
|
18223
|
+
* 备注
|
|
18224
|
+
*
|
|
18225
|
+
* @type string
|
|
18226
|
+
*/
|
|
18227
|
+
remark?: string;
|
|
17740
18228
|
/**
|
|
17741
18229
|
* 签名数据
|
|
17742
18230
|
*
|
|
@@ -18396,116 +18884,6 @@ export interface OnlineFormDesignDTO {
|
|
|
18396
18884
|
*/
|
|
18397
18885
|
width?: number;
|
|
18398
18886
|
}
|
|
18399
|
-
export interface OnlineFormFieldMetaVO {
|
|
18400
|
-
/**
|
|
18401
|
-
* 所属对象
|
|
18402
|
-
*
|
|
18403
|
-
* @type string
|
|
18404
|
-
*/
|
|
18405
|
-
belongingObject?: string;
|
|
18406
|
-
/**
|
|
18407
|
-
* 主子关联 绑定子模型字段
|
|
18408
|
-
*
|
|
18409
|
-
* @type string
|
|
18410
|
-
*/
|
|
18411
|
-
bindFieldKey?: string;
|
|
18412
|
-
/**
|
|
18413
|
-
* 关联主键字段的绑定信息,格式:关联模型key
|
|
18414
|
-
*
|
|
18415
|
-
* @type string
|
|
18416
|
-
*/
|
|
18417
|
-
bindInfo?: string;
|
|
18418
|
-
/**
|
|
18419
|
-
* 业务字段类型
|
|
18420
|
-
*
|
|
18421
|
-
* @type string
|
|
18422
|
-
*/
|
|
18423
|
-
bizType?: string;
|
|
18424
|
-
/**
|
|
18425
|
-
* 默认值
|
|
18426
|
-
*
|
|
18427
|
-
* @type DefaultValue
|
|
18428
|
-
*/
|
|
18429
|
-
defaultValue?: DefaultValue;
|
|
18430
|
-
/**
|
|
18431
|
-
* 描述
|
|
18432
|
-
*
|
|
18433
|
-
* @type string
|
|
18434
|
-
*/
|
|
18435
|
-
description?: string;
|
|
18436
|
-
/**
|
|
18437
|
-
* 多语言配置
|
|
18438
|
-
*
|
|
18439
|
-
* @type string
|
|
18440
|
-
*/
|
|
18441
|
-
i18nConfig?: string;
|
|
18442
|
-
/**
|
|
18443
|
-
* 字段key
|
|
18444
|
-
*
|
|
18445
|
-
* @type string
|
|
18446
|
-
*/
|
|
18447
|
-
key?: string;
|
|
18448
|
-
/**
|
|
18449
|
-
* 映射类型(公式,函数等实际映射的类型)
|
|
18450
|
-
*
|
|
18451
|
-
* @type string
|
|
18452
|
-
*/
|
|
18453
|
-
mappingType?: string;
|
|
18454
|
-
/**
|
|
18455
|
-
* 模型定义表key
|
|
18456
|
-
*
|
|
18457
|
-
* @type string
|
|
18458
|
-
*/
|
|
18459
|
-
modelKey?: string;
|
|
18460
|
-
/**
|
|
18461
|
-
* 名称
|
|
18462
|
-
*
|
|
18463
|
-
* @type string
|
|
18464
|
-
*/
|
|
18465
|
-
name?: string;
|
|
18466
|
-
/**
|
|
18467
|
-
* 父字段(RDO模型使用,0/1)
|
|
18468
|
-
*
|
|
18469
|
-
* @type number
|
|
18470
|
-
*/
|
|
18471
|
-
parentField?: number;
|
|
18472
|
-
/**
|
|
18473
|
-
* 主子/引用关联模型类型(NDO/RDO)
|
|
18474
|
-
*
|
|
18475
|
-
* @type string
|
|
18476
|
-
*/
|
|
18477
|
-
refModelType?: string;
|
|
18478
|
-
/**
|
|
18479
|
-
* 是否必填:(0否,1是)
|
|
18480
|
-
*
|
|
18481
|
-
* @type number
|
|
18482
|
-
*/
|
|
18483
|
-
required?: number;
|
|
18484
|
-
/**
|
|
18485
|
-
* 特有属性配置选项(json格式)
|
|
18486
|
-
*
|
|
18487
|
-
* @type IObject
|
|
18488
|
-
*/
|
|
18489
|
-
specificConfig?: IObject;
|
|
18490
|
-
/**
|
|
18491
|
-
* 子模型Key
|
|
18492
|
-
*
|
|
18493
|
-
* @type string
|
|
18494
|
-
*/
|
|
18495
|
-
subModelKey?: string;
|
|
18496
|
-
/**
|
|
18497
|
-
* 数据类型 (primary_key/主键,tenant/租户关联,ref_master_id/关联主键,text/短文本,long_text/长文本,integer/整数,long/长整数,decimal/精度小数,boolean/布尔,binary/二进制流,date/日期,time/时间,date_time/日期时间,user_multi/人员多选,org_multi/部门多选,image/图片,attachment/附件enum/枚举,serial/序列号,ref/引用关联,master_slave/主子关联,enum_multi/枚举多选,ref_multi/模型多选,expression/公式,agg/汇总,esop/E-SOP,expression_condition/公式条件)
|
|
18498
|
-
*
|
|
18499
|
-
* @type string
|
|
18500
|
-
*/
|
|
18501
|
-
type?: string;
|
|
18502
|
-
/**
|
|
18503
|
-
* 约束类型 GLOBAL:全局唯一 LEVEL:层级唯一
|
|
18504
|
-
*
|
|
18505
|
-
* @type UniqueConstraint
|
|
18506
|
-
*/
|
|
18507
|
-
uniqueConstraint?: UniqueConstraint;
|
|
18508
|
-
}
|
|
18509
18887
|
export interface OnlineFormInsTaskRequest {
|
|
18510
18888
|
/**
|
|
18511
18889
|
* 表单类型:BASE 基础表单、PROCESS 流程表单、VIEW视图表单、TEXT文本表单
|
|
@@ -20419,6 +20797,12 @@ export interface OnlineFormTmplModelResponse {
|
|
|
20419
20797
|
* @type string
|
|
20420
20798
|
*/
|
|
20421
20799
|
officeType?: string;
|
|
20800
|
+
/**
|
|
20801
|
+
* 线下编码
|
|
20802
|
+
*
|
|
20803
|
+
* @type string
|
|
20804
|
+
*/
|
|
20805
|
+
offlineCode?: string;
|
|
20422
20806
|
/**
|
|
20423
20807
|
* 线下版本号
|
|
20424
20808
|
*
|
|
@@ -20633,6 +21017,12 @@ export interface OnlineFormTmplRequest {
|
|
|
20633
21017
|
* @type string
|
|
20634
21018
|
*/
|
|
20635
21019
|
officeType?: string;
|
|
21020
|
+
/**
|
|
21021
|
+
* 线下编码
|
|
21022
|
+
*
|
|
21023
|
+
* @type string
|
|
21024
|
+
*/
|
|
21025
|
+
offlineCode?: string;
|
|
20636
21026
|
/**
|
|
20637
21027
|
* 电子记录-线下版本号
|
|
20638
21028
|
*
|
|
@@ -20881,6 +21271,12 @@ export interface OnlineFormTmplResponse {
|
|
|
20881
21271
|
* @type string
|
|
20882
21272
|
*/
|
|
20883
21273
|
officeType?: string;
|
|
21274
|
+
/**
|
|
21275
|
+
* 线下编码
|
|
21276
|
+
*
|
|
21277
|
+
* @type string
|
|
21278
|
+
*/
|
|
21279
|
+
offlineCode?: string;
|
|
20884
21280
|
/**
|
|
20885
21281
|
* 线下版本号
|
|
20886
21282
|
*
|
|
@@ -22634,7 +23030,7 @@ export interface PageLockRequest {
|
|
|
22634
23030
|
*/
|
|
22635
23031
|
id?: string;
|
|
22636
23032
|
/**
|
|
22637
|
-
* 页面类型 (web app avaScript ...)
|
|
23033
|
+
* 页面类型 (web app avaScript ...) transaction_module 事务
|
|
22638
23034
|
*
|
|
22639
23035
|
* @type string
|
|
22640
23036
|
*/
|
|
@@ -27173,6 +27569,12 @@ export interface ProcessPathResponse {
|
|
|
27173
27569
|
* @type string
|
|
27174
27570
|
*/
|
|
27175
27571
|
childTxnInstStatus?: string;
|
|
27572
|
+
/**
|
|
27573
|
+
* 配置
|
|
27574
|
+
*
|
|
27575
|
+
* @type string
|
|
27576
|
+
*/
|
|
27577
|
+
config?: string;
|
|
27176
27578
|
/**
|
|
27177
27579
|
*
|
|
27178
27580
|
*
|
|
@@ -33419,6 +33821,12 @@ export interface SecurityConfig {
|
|
|
33419
33821
|
* @type number
|
|
33420
33822
|
*/
|
|
33421
33823
|
signFirstTimeChangePassword?: number;
|
|
33824
|
+
/**
|
|
33825
|
+
* 签名方式
|
|
33826
|
+
*
|
|
33827
|
+
* @type string
|
|
33828
|
+
*/
|
|
33829
|
+
signMethod?: string;
|
|
33422
33830
|
/**
|
|
33423
33831
|
* 签名密码-密码最小长度
|
|
33424
33832
|
*
|
|
@@ -36287,6 +36695,18 @@ export interface TransactionResponse {
|
|
|
36287
36695
|
* @type string
|
|
36288
36696
|
*/
|
|
36289
36697
|
key?: string;
|
|
36698
|
+
/**
|
|
36699
|
+
* 锁定页面人员id
|
|
36700
|
+
*
|
|
36701
|
+
* @type string
|
|
36702
|
+
*/
|
|
36703
|
+
lockUserId?: string;
|
|
36704
|
+
/**
|
|
36705
|
+
* 锁定页面人员名称
|
|
36706
|
+
*
|
|
36707
|
+
* @type string
|
|
36708
|
+
*/
|
|
36709
|
+
lockUserName?: string;
|
|
36290
36710
|
/**
|
|
36291
36711
|
* 绑定模型key
|
|
36292
36712
|
*
|
|
@@ -36323,6 +36743,12 @@ export interface TransactionResponse {
|
|
|
36323
36743
|
* @type string
|
|
36324
36744
|
*/
|
|
36325
36745
|
name?: string;
|
|
36746
|
+
/**
|
|
36747
|
+
* newLogId
|
|
36748
|
+
*
|
|
36749
|
+
* @type string
|
|
36750
|
+
*/
|
|
36751
|
+
newLogId?: string;
|
|
36326
36752
|
/**
|
|
36327
36753
|
* 流程定义id
|
|
36328
36754
|
*
|
|
@@ -38848,6 +39274,146 @@ export interface 发送消息DTO {
|
|
|
38848
39274
|
*/
|
|
38849
39275
|
type?: string;
|
|
38850
39276
|
}
|
|
39277
|
+
export interface 在线表单字段创建请求 {
|
|
39278
|
+
/**
|
|
39279
|
+
* 所属字段
|
|
39280
|
+
*
|
|
39281
|
+
* @type string
|
|
39282
|
+
*/
|
|
39283
|
+
belongingField?: string;
|
|
39284
|
+
/**
|
|
39285
|
+
* 所属对象
|
|
39286
|
+
*
|
|
39287
|
+
* @type string
|
|
39288
|
+
*/
|
|
39289
|
+
belongingObject?: string;
|
|
39290
|
+
/**
|
|
39291
|
+
* 主子关联 绑定子模型字段
|
|
39292
|
+
*
|
|
39293
|
+
* @type string
|
|
39294
|
+
*/
|
|
39295
|
+
bindFieldKey?: string;
|
|
39296
|
+
/**
|
|
39297
|
+
* 关联主键字段的绑定信息,格式:关联模型key
|
|
39298
|
+
*
|
|
39299
|
+
* @type string
|
|
39300
|
+
*/
|
|
39301
|
+
bindInfo?: string;
|
|
39302
|
+
/**
|
|
39303
|
+
* 业务字段类型
|
|
39304
|
+
*
|
|
39305
|
+
* @type string
|
|
39306
|
+
*/
|
|
39307
|
+
bizType?: string;
|
|
39308
|
+
/**
|
|
39309
|
+
* 自定义字段ID
|
|
39310
|
+
*
|
|
39311
|
+
* @type string
|
|
39312
|
+
*/
|
|
39313
|
+
customFieldId?: string;
|
|
39314
|
+
/**
|
|
39315
|
+
* 自定义对象ID
|
|
39316
|
+
*
|
|
39317
|
+
* @type string
|
|
39318
|
+
*/
|
|
39319
|
+
customObjectId?: string;
|
|
39320
|
+
/**
|
|
39321
|
+
* 默认值
|
|
39322
|
+
*
|
|
39323
|
+
* @type DefaultValue
|
|
39324
|
+
*/
|
|
39325
|
+
defaultValue?: DefaultValue;
|
|
39326
|
+
/**
|
|
39327
|
+
* 描述
|
|
39328
|
+
*
|
|
39329
|
+
* @type string
|
|
39330
|
+
*/
|
|
39331
|
+
description?: string;
|
|
39332
|
+
/**
|
|
39333
|
+
* 多语言配置
|
|
39334
|
+
*
|
|
39335
|
+
* @type string
|
|
39336
|
+
*/
|
|
39337
|
+
i18nConfig?: string;
|
|
39338
|
+
/**
|
|
39339
|
+
* 字段key
|
|
39340
|
+
*
|
|
39341
|
+
* @type string
|
|
39342
|
+
*/
|
|
39343
|
+
key?: string;
|
|
39344
|
+
/**
|
|
39345
|
+
* 映射类型(公式,函数等实际映射的类型)
|
|
39346
|
+
*
|
|
39347
|
+
* @type string
|
|
39348
|
+
*/
|
|
39349
|
+
mappingType?: string;
|
|
39350
|
+
/**
|
|
39351
|
+
* 模型定义表key
|
|
39352
|
+
*
|
|
39353
|
+
* @type string
|
|
39354
|
+
*/
|
|
39355
|
+
modelKey?: string;
|
|
39356
|
+
/**
|
|
39357
|
+
* 名称
|
|
39358
|
+
*
|
|
39359
|
+
* @type string
|
|
39360
|
+
*/
|
|
39361
|
+
name?: string;
|
|
39362
|
+
/**
|
|
39363
|
+
* 父字段(RDO模型使用,0/1)
|
|
39364
|
+
*
|
|
39365
|
+
* @type number
|
|
39366
|
+
*/
|
|
39367
|
+
parentField?: number;
|
|
39368
|
+
/**
|
|
39369
|
+
* 主子/引用关联模型类型(NDO/RDO)
|
|
39370
|
+
*
|
|
39371
|
+
* @type string
|
|
39372
|
+
*/
|
|
39373
|
+
refModelType?: string;
|
|
39374
|
+
/**
|
|
39375
|
+
* 是否必填:(0否,1是)
|
|
39376
|
+
*
|
|
39377
|
+
* @type number
|
|
39378
|
+
*/
|
|
39379
|
+
required?: number;
|
|
39380
|
+
/**
|
|
39381
|
+
* 特有属性配置选项(json格式)
|
|
39382
|
+
*
|
|
39383
|
+
* @type IObject
|
|
39384
|
+
*/
|
|
39385
|
+
specificConfig?: IObject;
|
|
39386
|
+
/**
|
|
39387
|
+
* 子模型Key
|
|
39388
|
+
*
|
|
39389
|
+
* @type string
|
|
39390
|
+
*/
|
|
39391
|
+
subModelKey?: string;
|
|
39392
|
+
/**
|
|
39393
|
+
* 表单模板版本id;使用字段库字段时必填
|
|
39394
|
+
*
|
|
39395
|
+
* @type string
|
|
39396
|
+
*/
|
|
39397
|
+
tmplVersionId?: string;
|
|
39398
|
+
/**
|
|
39399
|
+
* 字段建模是否启用追溯
|
|
39400
|
+
*
|
|
39401
|
+
* @type number
|
|
39402
|
+
*/
|
|
39403
|
+
traceEnabled?: number;
|
|
39404
|
+
/**
|
|
39405
|
+
* 数据类型 (primary_key/主键,tenant/租户关联,ref_master_id/关联主键,text/短文本,long_text/长文本,integer/整数,long/长整数,decimal/精度小数,boolean/布尔,binary/二进制流,date/日期,time/时间,date_time/日期时间,user_multi/人员多选,org_multi/部门多选,image/图片,attachment/附件enum/枚举,serial/序列号,ref/引用关联,master_slave/主子关联,enum_multi/枚举多选,ref_multi/模型多选,expression/公式,agg/汇总,esop/E-SOP,expression_condition/公式条件)
|
|
39406
|
+
*
|
|
39407
|
+
* @type string
|
|
39408
|
+
*/
|
|
39409
|
+
type?: string;
|
|
39410
|
+
/**
|
|
39411
|
+
* 约束类型 GLOBAL:全局唯一 LEVEL:层级唯一
|
|
39412
|
+
*
|
|
39413
|
+
* @type UniqueConstraint
|
|
39414
|
+
*/
|
|
39415
|
+
uniqueConstraint?: UniqueConstraint;
|
|
39416
|
+
}
|
|
38851
39417
|
export interface 批量添加表单模板请求 {
|
|
38852
39418
|
/**
|
|
38853
39419
|
* 分类ID
|
|
@@ -39040,6 +39606,206 @@ export interface 添加表单模板请求 {
|
|
|
39040
39606
|
*/
|
|
39041
39607
|
version?: string;
|
|
39042
39608
|
}
|
|
39609
|
+
export interface 自定义字段导入结果 {
|
|
39610
|
+
/**
|
|
39611
|
+
* 新增数量
|
|
39612
|
+
*
|
|
39613
|
+
* @type number
|
|
39614
|
+
*/
|
|
39615
|
+
created?: number;
|
|
39616
|
+
/**
|
|
39617
|
+
* 失败数量
|
|
39618
|
+
*
|
|
39619
|
+
* @type number
|
|
39620
|
+
*/
|
|
39621
|
+
failed?: number;
|
|
39622
|
+
/**
|
|
39623
|
+
* 失败明细
|
|
39624
|
+
*
|
|
39625
|
+
* @type Failure[]
|
|
39626
|
+
*/
|
|
39627
|
+
failures?: Failure[];
|
|
39628
|
+
/**
|
|
39629
|
+
* 文件名
|
|
39630
|
+
*
|
|
39631
|
+
* @type string
|
|
39632
|
+
*/
|
|
39633
|
+
fileName?: string;
|
|
39634
|
+
/**
|
|
39635
|
+
* 数据总数
|
|
39636
|
+
*
|
|
39637
|
+
* @type number
|
|
39638
|
+
*/
|
|
39639
|
+
total?: number;
|
|
39640
|
+
}
|
|
39641
|
+
export interface 自定义字段导出请求 {
|
|
39642
|
+
/**
|
|
39643
|
+
* 需要导出的字段id,为空时导出全部
|
|
39644
|
+
*
|
|
39645
|
+
* @type string[]
|
|
39646
|
+
*/
|
|
39647
|
+
ids?: string[];
|
|
39648
|
+
}
|
|
39649
|
+
export interface 自定义字段引用表单模板 {
|
|
39650
|
+
/**
|
|
39651
|
+
* 编码
|
|
39652
|
+
*
|
|
39653
|
+
* @type string
|
|
39654
|
+
*/
|
|
39655
|
+
code?: string;
|
|
39656
|
+
/**
|
|
39657
|
+
* 模式
|
|
39658
|
+
*
|
|
39659
|
+
* @type string
|
|
39660
|
+
*/
|
|
39661
|
+
edition?: string;
|
|
39662
|
+
/**
|
|
39663
|
+
* 表单类型
|
|
39664
|
+
*
|
|
39665
|
+
* @type string
|
|
39666
|
+
*/
|
|
39667
|
+
formType?: string;
|
|
39668
|
+
/**
|
|
39669
|
+
* 表单模板id
|
|
39670
|
+
*
|
|
39671
|
+
* @type string
|
|
39672
|
+
*/
|
|
39673
|
+
id?: string;
|
|
39674
|
+
/**
|
|
39675
|
+
* 名称
|
|
39676
|
+
*
|
|
39677
|
+
* @type string
|
|
39678
|
+
*/
|
|
39679
|
+
name?: string;
|
|
39680
|
+
/**
|
|
39681
|
+
* 文档类型
|
|
39682
|
+
*
|
|
39683
|
+
* @type string
|
|
39684
|
+
*/
|
|
39685
|
+
officeType?: string;
|
|
39686
|
+
/**
|
|
39687
|
+
* 线下版本
|
|
39688
|
+
*
|
|
39689
|
+
* @type string
|
|
39690
|
+
*/
|
|
39691
|
+
offlineVersion?: string;
|
|
39692
|
+
}
|
|
39693
|
+
export interface 自定义对象保存请求 {
|
|
39694
|
+
/**
|
|
39695
|
+
*
|
|
39696
|
+
*
|
|
39697
|
+
* @type string
|
|
39698
|
+
*/
|
|
39699
|
+
description?: string;
|
|
39700
|
+
/**
|
|
39701
|
+
*
|
|
39702
|
+
*
|
|
39703
|
+
* @type 自定义对象字段请求[]
|
|
39704
|
+
*/
|
|
39705
|
+
fields?: 自定义对象字段请求[];
|
|
39706
|
+
/**
|
|
39707
|
+
* 对象id;修改时传入
|
|
39708
|
+
*
|
|
39709
|
+
* @type string
|
|
39710
|
+
*/
|
|
39711
|
+
id?: string;
|
|
39712
|
+
/**
|
|
39713
|
+
*
|
|
39714
|
+
*
|
|
39715
|
+
* @type string
|
|
39716
|
+
*/
|
|
39717
|
+
key?: string;
|
|
39718
|
+
/**
|
|
39719
|
+
*
|
|
39720
|
+
*
|
|
39721
|
+
* @type string
|
|
39722
|
+
*/
|
|
39723
|
+
name?: string;
|
|
39724
|
+
}
|
|
39725
|
+
export interface 自定义对象字段请求 {
|
|
39726
|
+
/**
|
|
39727
|
+
*
|
|
39728
|
+
*
|
|
39729
|
+
* @type string
|
|
39730
|
+
*/
|
|
39731
|
+
bizType?: string;
|
|
39732
|
+
/**
|
|
39733
|
+
* 字段定义id;修改已有字段时传入
|
|
39734
|
+
*
|
|
39735
|
+
* @type string
|
|
39736
|
+
*/
|
|
39737
|
+
id?: string;
|
|
39738
|
+
/**
|
|
39739
|
+
*
|
|
39740
|
+
*
|
|
39741
|
+
* @type string
|
|
39742
|
+
*/
|
|
39743
|
+
key?: string;
|
|
39744
|
+
/**
|
|
39745
|
+
*
|
|
39746
|
+
*
|
|
39747
|
+
* @type string
|
|
39748
|
+
*/
|
|
39749
|
+
name?: string;
|
|
39750
|
+
/**
|
|
39751
|
+
*
|
|
39752
|
+
*
|
|
39753
|
+
* @type number
|
|
39754
|
+
*/
|
|
39755
|
+
required?: number;
|
|
39756
|
+
/**
|
|
39757
|
+
*
|
|
39758
|
+
*
|
|
39759
|
+
* @type string
|
|
39760
|
+
*/
|
|
39761
|
+
type?: string;
|
|
39762
|
+
/**
|
|
39763
|
+
* 字段唯一配置JSON
|
|
39764
|
+
*
|
|
39765
|
+
* @type string
|
|
39766
|
+
*/
|
|
39767
|
+
uniqueConstraint?: string;
|
|
39768
|
+
}
|
|
39769
|
+
export interface 自定义对象导入结果 {
|
|
39770
|
+
/**
|
|
39771
|
+
* 新增数量
|
|
39772
|
+
*
|
|
39773
|
+
* @type number
|
|
39774
|
+
*/
|
|
39775
|
+
created?: number;
|
|
39776
|
+
/**
|
|
39777
|
+
* 失败数量
|
|
39778
|
+
*
|
|
39779
|
+
* @type number
|
|
39780
|
+
*/
|
|
39781
|
+
failed?: number;
|
|
39782
|
+
/**
|
|
39783
|
+
* 失败明细
|
|
39784
|
+
*
|
|
39785
|
+
* @type Failure[]
|
|
39786
|
+
*/
|
|
39787
|
+
failures?: Failure[];
|
|
39788
|
+
/**
|
|
39789
|
+
* 文件名
|
|
39790
|
+
*
|
|
39791
|
+
* @type string
|
|
39792
|
+
*/
|
|
39793
|
+
fileName?: string;
|
|
39794
|
+
/**
|
|
39795
|
+
* 数据总数
|
|
39796
|
+
*
|
|
39797
|
+
* @type number
|
|
39798
|
+
*/
|
|
39799
|
+
total?: number;
|
|
39800
|
+
}
|
|
39801
|
+
export interface 自定义对象导出请求 {
|
|
39802
|
+
/**
|
|
39803
|
+
* 需要导出的对象id,为空时导出全部
|
|
39804
|
+
*
|
|
39805
|
+
* @type string[]
|
|
39806
|
+
*/
|
|
39807
|
+
ids?: string[];
|
|
39808
|
+
}
|
|
39043
39809
|
export interface 解压失败原因响应 {
|
|
39044
39810
|
/**
|
|
39045
39811
|
* 完成时间
|