@gct-paas/api 6.0.0-dev.11 → 6.0.0-dev.13

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.
Files changed (26) hide show
  1. package/dist/index.esm.min.js +1 -1
  2. package/es/apaas/service/api-config.mjs +296 -1
  3. package/es/apaas/service/apis/api.service.d.ts +0 -4
  4. package/es/apaas/service/apis/app-global-settings.service.d.ts +0 -4
  5. package/es/apaas/service/apis/app-org.service.d.ts +0 -4
  6. package/es/apaas/service/apis/category.service.d.ts +0 -16
  7. package/es/apaas/service/apis/custom-field.service.d.ts +166 -0
  8. package/es/apaas/service/apis/custom-object.service.d.ts +186 -0
  9. package/es/apaas/service/apis/edhr-category.service.d.ts +27 -1
  10. package/es/apaas/service/apis/edhr-instance-search-history.service.d.ts +21 -0
  11. package/es/apaas/service/apis/edhr-instance.service.d.ts +8 -0
  12. package/es/apaas/service/apis/mdm-category.service.d.ts +148 -0
  13. package/es/apaas/service/apis/message-tmpl.service.d.ts +4 -0
  14. package/es/apaas/service/apis/model-meta.service.d.ts +16 -0
  15. package/es/apaas/service/apis/ocr.service.d.ts +7 -1
  16. package/es/apaas/service/apis/online-form-category.service.d.ts +27 -1
  17. package/es/apaas/service/apis/online-form-instance.service.d.ts +12 -0
  18. package/es/apaas/service/apis/online-form-tmpl.service.d.ts +49 -3
  19. package/es/apaas/service/entities.d.ts +1235 -197
  20. package/es/apaas/service/index.d.ts +6 -0
  21. package/es/platform/service/api-config.mjs +27 -0
  22. package/es/platform/service/apis/api.service.d.ts +16 -5
  23. package/es/platform/service/apis/ocr-model.service.d.ts +19 -0
  24. package/es/platform/service/apis/plat.service.d.ts +6 -0
  25. package/es/platform/service/entities.d.ts +38 -0
  26. package/package.json +6 -2
@@ -2911,12 +2911,24 @@ 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
  *
2917
2923
  * @type string
2918
2924
  */
2919
2925
  password?: string;
2926
+ /**
2927
+ *
2928
+ *
2929
+ * @type string
2930
+ */
2931
+ tenantId?: string;
2920
2932
  /**
2921
2933
  *
2922
2934
  *
@@ -3147,6 +3159,12 @@ export interface ChildEdhrInstanceRelationDTO {
3147
3159
  * @type number
3148
3160
  */
3149
3161
  qty?: number;
3162
+ /**
3163
+ *
3164
+ *
3165
+ * @type string
3166
+ */
3167
+ relatedParentName?: string;
3150
3168
  /**
3151
3169
  *
3152
3170
  *
@@ -4078,171 +4096,501 @@ export interface CrossReportConditionDTO {
4078
4096
  */
4079
4097
  sorts?: Sort[];
4080
4098
  }
4081
- export interface CustomerComplaintRequest {
4099
+ export interface CustomFieldEntity {
4082
4100
  /**
4083
- * 抱怨地址
4101
+ *
4084
4102
  *
4085
4103
  * @type string
4086
4104
  */
4087
- address?: string;
4105
+ bizType?: string;
4088
4106
  /**
4089
- * 是否启动不良事件程序
4107
+ *
4090
4108
  *
4091
4109
  * @type string
4092
4110
  */
4093
- adverseProcedure?: string;
4111
+ createOrgId?: string;
4094
4112
  /**
4095
- * 抱怨附件信息
4113
+ *
4096
4114
  *
4097
4115
  * @type string
4098
4116
  */
4099
- attachment?: string;
4117
+ createTime?: string;
4100
4118
  /**
4101
- * 批号
4119
+ *
4102
4120
  *
4103
4121
  * @type string
4104
4122
  */
4105
- batchNumber?: string;
4123
+ createUserId?: string;
4106
4124
  /**
4107
- * 抱怨数量
4125
+ *
4108
4126
  *
4109
4127
  * @type string
4110
4128
  */
4111
- complaintCount?: string;
4129
+ createUserName?: string;
4112
4130
  /**
4113
- * 联系方式
4114
4131
  *
4115
- * @type string
4132
+ *
4133
+ * @type number
4116
4134
  */
4117
- contact?: string;
4135
+ dataVersion?: number;
4118
4136
  /**
4119
- * 抱怨描述
4137
+ *
4120
4138
  *
4121
4139
  * @type string
4122
4140
  */
4123
4141
  description?: string;
4124
4142
  /**
4125
- * 致死
4143
+ *
4126
4144
  *
4127
4145
  * @type string
4128
4146
  */
4129
- fatal?: string;
4147
+ i18nConfig?: string;
4130
4148
  /**
4131
- * 第一次使用
4149
+ *
4132
4150
  *
4133
4151
  * @type string
4134
4152
  */
4135
- firsttimeUse?: string;
4153
+ id?: string;
4136
4154
  /**
4137
- * 实例Id
4155
+ *
4138
4156
  *
4139
4157
  * @type string
4140
4158
  */
4141
- instanceId?: string;
4159
+ key?: string;
4142
4160
  /**
4143
- * 采取措施避免损伤
4161
+ *
4144
4162
  *
4145
4163
  * @type string
4146
4164
  */
4147
- measuresAvoidDamage?: string;
4165
+ modifyOrgId?: string;
4148
4166
  /**
4149
- * 抱怨发生时刻
4167
+ *
4150
4168
  *
4151
4169
  * @type string
4152
4170
  */
4153
- occurrenceTime?: string;
4171
+ modifyTime?: string;
4154
4172
  /**
4155
- * 其他信息
4173
+ *
4156
4174
  *
4157
4175
  * @type string
4158
4176
  */
4159
- otherInfo?: string;
4177
+ modifyUserId?: string;
4160
4178
  /**
4161
- * 病人情况
4179
+ *
4162
4180
  *
4163
4181
  * @type string
4164
4182
  */
4165
- patientCondition?: string;
4183
+ modifyUserName?: string;
4166
4184
  /**
4167
- * 抱怨人
4185
+ *
4168
4186
  *
4169
4187
  * @type string
4170
4188
  */
4171
- person?: string;
4189
+ name?: string;
4190
+ /**
4191
+ *
4192
+ *
4193
+ * @type number
4194
+ */
4195
+ refNum?: number;
4172
4196
  /**
4173
- * 产品名称
4197
+ *
4174
4198
  *
4175
4199
  * @type string
4176
4200
  */
4177
- productName?: string;
4201
+ tenantId?: string;
4178
4202
  /**
4179
- * 抱怨接收日期
4203
+ *
4204
+ *
4205
+ * @type number
4206
+ */
4207
+ traceEnabled?: number;
4208
+ /**
4209
+ *
4180
4210
  *
4181
4211
  * @type string
4182
4212
  */
4183
- receiveDate?: string;
4213
+ type?: string;
4214
+ }
4215
+ export interface CustomObjectEntity {
4184
4216
  /**
4185
- * 记录Id
4217
+ *
4186
4218
  *
4187
4219
  * @type string
4188
4220
  */
4189
- recordId?: string;
4221
+ createOrgId?: string;
4190
4222
  /**
4191
- * 抱怨地区
4223
+ *
4192
4224
  *
4193
4225
  * @type string
4194
4226
  */
4195
- region?: string;
4227
+ createTime?: string;
4196
4228
  /**
4197
- * 重复使用
4229
+ *
4198
4230
  *
4199
4231
  * @type string
4200
4232
  */
4201
- repeatUse?: string;
4233
+ createUserId?: string;
4202
4234
  /**
4203
- * 报告地址
4235
+ *
4204
4236
  *
4205
4237
  * @type string
4206
4238
  */
4207
- reportUrl?: string;
4239
+ createUserName?: string;
4208
4240
  /**
4209
- * 严重损伤
4241
+ *
4242
+ *
4243
+ * @type number
4244
+ */
4245
+ dataVersion?: number;
4246
+ /**
4247
+ *
4210
4248
  *
4211
4249
  * @type string
4212
4250
  */
4213
- severeLoss?: string;
4251
+ description?: string;
4214
4252
  /**
4215
- * 来源
4253
+ *
4254
+ *
4255
+ * @type CustomObjectItemEntity[]
4256
+ */
4257
+ entries?: CustomObjectItemEntity[];
4258
+ /**
4259
+ *
4216
4260
  *
4217
4261
  * @type string
4218
4262
  */
4219
- source?: string;
4263
+ id?: string;
4220
4264
  /**
4221
- * 规格型号
4265
+ *
4222
4266
  *
4223
4267
  * @type string
4224
4268
  */
4225
- specificationModel?: string;
4269
+ key?: string;
4270
+ /**
4271
+ *
4272
+ *
4273
+ * @type string
4274
+ */
4275
+ modifyOrgId?: string;
4226
4276
  /**
4227
- * 状态
4277
+ *
4278
+ *
4279
+ * @type string
4280
+ */
4281
+ modifyTime?: string;
4282
+ /**
4283
+ *
4284
+ *
4285
+ * @type string
4286
+ */
4287
+ modifyUserId?: string;
4288
+ /**
4289
+ *
4290
+ *
4291
+ * @type string
4292
+ */
4293
+ modifyUserName?: string;
4294
+ /**
4295
+ *
4296
+ *
4297
+ * @type string
4298
+ */
4299
+ name?: string;
4300
+ /**
4301
+ *
4302
+ *
4303
+ * @type string
4304
+ */
4305
+ tenantId?: string;
4306
+ }
4307
+ export interface CustomObjectItemEntity {
4308
+ /**
4309
+ *
4310
+ *
4311
+ * @type string
4312
+ */
4313
+ bizType?: string;
4314
+ /**
4315
+ *
4316
+ *
4317
+ * @type string
4318
+ */
4319
+ createOrgId?: string;
4320
+ /**
4321
+ *
4322
+ *
4323
+ * @type string
4324
+ */
4325
+ createTime?: string;
4326
+ /**
4327
+ *
4328
+ *
4329
+ * @type string
4330
+ */
4331
+ createUserId?: string;
4332
+ /**
4333
+ *
4334
+ *
4335
+ * @type string
4336
+ */
4337
+ createUserName?: string;
4338
+ /**
4339
+ *
4228
4340
  *
4229
4341
  * @type number
4230
4342
  */
4231
- status?: number;
4343
+ dataVersion?: number;
4232
4344
  /**
4233
- * 是否同步
4345
+ *
4346
+ *
4347
+ * @type string
4348
+ */
4349
+ id?: string;
4350
+ /**
4351
+ *
4352
+ *
4353
+ * @type string
4354
+ */
4355
+ key?: string;
4356
+ /**
4357
+ *
4358
+ *
4359
+ * @type string
4360
+ */
4361
+ modifyOrgId?: string;
4362
+ /**
4363
+ *
4364
+ *
4365
+ * @type string
4366
+ */
4367
+ modifyTime?: string;
4368
+ /**
4369
+ *
4370
+ *
4371
+ * @type string
4372
+ */
4373
+ modifyUserId?: string;
4374
+ /**
4375
+ *
4376
+ *
4377
+ * @type string
4378
+ */
4379
+ modifyUserName?: string;
4380
+ /**
4381
+ *
4382
+ *
4383
+ * @type string
4384
+ */
4385
+ name?: string;
4386
+ /**
4387
+ *
4388
+ *
4389
+ * @type string
4390
+ */
4391
+ refFieldKey?: string;
4392
+ /**
4393
+ *
4394
+ *
4395
+ * @type string
4396
+ */
4397
+ refMasterId?: string;
4398
+ /**
4399
+ *
4400
+ *
4401
+ * @type string
4402
+ */
4403
+ refModelKey?: string;
4404
+ /**
4405
+ *
4234
4406
  *
4235
4407
  * @type number
4236
4408
  */
4237
- synced?: number;
4409
+ required?: number;
4238
4410
  /**
4239
- * UDI
4411
+ *
4240
4412
  *
4241
4413
  * @type string
4242
4414
  */
4243
- udi?: string;
4415
+ tenantId?: string;
4416
+ /**
4417
+ *
4418
+ *
4419
+ * @type string
4420
+ */
4421
+ type?: string;
4422
+ /**
4423
+ *
4424
+ *
4425
+ * @type string
4426
+ */
4427
+ uniqueConstraint?: string;
4244
4428
  }
4245
- export interface CustomerComplaintResponse {
4429
+ export interface CustomerComplaintRequest {
4430
+ /**
4431
+ * 抱怨地址
4432
+ *
4433
+ * @type string
4434
+ */
4435
+ address?: string;
4436
+ /**
4437
+ * 是否启动不良事件程序
4438
+ *
4439
+ * @type string
4440
+ */
4441
+ adverseProcedure?: string;
4442
+ /**
4443
+ * 抱怨附件信息
4444
+ *
4445
+ * @type string
4446
+ */
4447
+ attachment?: string;
4448
+ /**
4449
+ * 批号
4450
+ *
4451
+ * @type string
4452
+ */
4453
+ batchNumber?: string;
4454
+ /**
4455
+ * 抱怨数量
4456
+ *
4457
+ * @type string
4458
+ */
4459
+ complaintCount?: string;
4460
+ /**
4461
+ * 联系方式
4462
+ *
4463
+ * @type string
4464
+ */
4465
+ contact?: string;
4466
+ /**
4467
+ * 抱怨描述
4468
+ *
4469
+ * @type string
4470
+ */
4471
+ description?: string;
4472
+ /**
4473
+ * 致死
4474
+ *
4475
+ * @type string
4476
+ */
4477
+ fatal?: string;
4478
+ /**
4479
+ * 第一次使用
4480
+ *
4481
+ * @type string
4482
+ */
4483
+ firsttimeUse?: string;
4484
+ /**
4485
+ * 实例Id
4486
+ *
4487
+ * @type string
4488
+ */
4489
+ instanceId?: string;
4490
+ /**
4491
+ * 采取措施避免损伤
4492
+ *
4493
+ * @type string
4494
+ */
4495
+ measuresAvoidDamage?: string;
4496
+ /**
4497
+ * 抱怨发生时刻
4498
+ *
4499
+ * @type string
4500
+ */
4501
+ occurrenceTime?: string;
4502
+ /**
4503
+ * 其他信息
4504
+ *
4505
+ * @type string
4506
+ */
4507
+ otherInfo?: string;
4508
+ /**
4509
+ * 病人情况
4510
+ *
4511
+ * @type string
4512
+ */
4513
+ patientCondition?: string;
4514
+ /**
4515
+ * 抱怨人
4516
+ *
4517
+ * @type string
4518
+ */
4519
+ person?: string;
4520
+ /**
4521
+ * 产品名称
4522
+ *
4523
+ * @type string
4524
+ */
4525
+ productName?: string;
4526
+ /**
4527
+ * 抱怨接收日期
4528
+ *
4529
+ * @type string
4530
+ */
4531
+ receiveDate?: string;
4532
+ /**
4533
+ * 记录Id
4534
+ *
4535
+ * @type string
4536
+ */
4537
+ recordId?: string;
4538
+ /**
4539
+ * 抱怨地区
4540
+ *
4541
+ * @type string
4542
+ */
4543
+ region?: string;
4544
+ /**
4545
+ * 重复使用
4546
+ *
4547
+ * @type string
4548
+ */
4549
+ repeatUse?: string;
4550
+ /**
4551
+ * 报告地址
4552
+ *
4553
+ * @type string
4554
+ */
4555
+ reportUrl?: string;
4556
+ /**
4557
+ * 严重损伤
4558
+ *
4559
+ * @type string
4560
+ */
4561
+ severeLoss?: string;
4562
+ /**
4563
+ * 来源
4564
+ *
4565
+ * @type string
4566
+ */
4567
+ source?: string;
4568
+ /**
4569
+ * 规格型号
4570
+ *
4571
+ * @type string
4572
+ */
4573
+ specificationModel?: string;
4574
+ /**
4575
+ * 状态
4576
+ *
4577
+ * @type number
4578
+ */
4579
+ status?: number;
4580
+ /**
4581
+ * 是否同步
4582
+ *
4583
+ * @type number
4584
+ */
4585
+ synced?: number;
4586
+ /**
4587
+ * UDI
4588
+ *
4589
+ * @type string
4590
+ */
4591
+ udi?: string;
4592
+ }
4593
+ export interface CustomerComplaintResponse {
4246
4594
  /**
4247
4595
  * 抱怨地址
4248
4596
  *
@@ -5983,12 +6331,24 @@ export interface DocControlStartedRequest {
5983
6331
  * @type string
5984
6332
  */
5985
6333
  offlineVersion?: string;
6334
+ /**
6335
+ * 发起审核时流程定义ID数据的快照
6336
+ *
6337
+ * @type string
6338
+ */
6339
+ procDefId?: string;
5986
6340
  /**
5987
6341
  * 流程实例id
5988
6342
  *
5989
6343
  * @type string
5990
6344
  */
5991
6345
  processInstanceId?: string;
6346
+ /**
6347
+ * 流程来源(DEFAULT:默认配置,USER_DEFINED:自定义)
6348
+ *
6349
+ * @type string
6350
+ */
6351
+ processSource?: string;
5992
6352
  /**
5993
6353
  * 发起审核时数据的快照
5994
6354
  *
@@ -6123,12 +6483,24 @@ export interface DocControlStartedResponse {
6123
6483
  * @type string
6124
6484
  */
6125
6485
  offlineVersion?: string;
6486
+ /**
6487
+ * 发起审核时流程定义ID数据的快照
6488
+ *
6489
+ * @type string
6490
+ */
6491
+ procDefId?: string;
6126
6492
  /**
6127
6493
  * 流程实例id
6128
6494
  *
6129
6495
  * @type string
6130
6496
  */
6131
6497
  processInstanceId?: string;
6498
+ /**
6499
+ * 流程来源(DEFAULT:默认配置,USER_DEFINED:自定义)
6500
+ *
6501
+ * @type string
6502
+ */
6503
+ processSource?: string;
6132
6504
  /**
6133
6505
  * 发起审核时数据的快照
6134
6506
  *
@@ -7581,6 +7953,12 @@ export interface EdhrInstance {
7581
7953
  * @type number
7582
7954
  */
7583
7955
  qty?: number;
7956
+ /**
7957
+ *
7958
+ *
7959
+ * @type string
7960
+ */
7961
+ relatedParentName?: string;
7584
7962
  /**
7585
7963
  *
7586
7964
  *
@@ -8011,6 +8389,18 @@ export interface EdhrInstanceSearchHistoryResponse {
8011
8389
  * @type string
8012
8390
  */
8013
8391
  materialStatus?: string;
8392
+ /**
8393
+ * 工单编码
8394
+ *
8395
+ * @type string
8396
+ */
8397
+ mfgOrderCode?: string;
8398
+ /**
8399
+ * 工单ID
8400
+ *
8401
+ * @type string
8402
+ */
8403
+ mfgOrderId?: string;
8014
8404
  /**
8015
8405
  * 修改人部门id
8016
8406
  *
@@ -8035,6 +8425,36 @@ export interface EdhrInstanceSearchHistoryResponse {
8035
8425
  * @type string
8036
8426
  */
8037
8427
  modifyUserName?: string;
8428
+ /**
8429
+ * 产品编码
8430
+ *
8431
+ * @type string
8432
+ */
8433
+ productCode?: string;
8434
+ /**
8435
+ * 产品ID
8436
+ *
8437
+ * @type string
8438
+ */
8439
+ productId?: string;
8440
+ /**
8441
+ * 产品名称
8442
+ *
8443
+ * @type string
8444
+ */
8445
+ productName?: string;
8446
+ /**
8447
+ * 产品规格
8448
+ *
8449
+ * @type string
8450
+ */
8451
+ productSpec?: string;
8452
+ /**
8453
+ * 关联父批次号
8454
+ *
8455
+ * @type string
8456
+ */
8457
+ relatedParentName?: string;
8038
8458
  /**
8039
8459
  * 租户id
8040
8460
  *
@@ -10160,6 +10580,32 @@ export interface ExtFieldConfig {
10160
10580
  */
10161
10581
  type?: number;
10162
10582
  }
10583
+ export interface Failure {
10584
+ /**
10585
+ * 对象在文件中的序号,从1开始
10586
+ *
10587
+ * @type number
10588
+ */
10589
+ index?: number;
10590
+ /**
10591
+ * 对象key
10592
+ *
10593
+ * @type string
10594
+ */
10595
+ key?: string;
10596
+ /**
10597
+ * 失败原因
10598
+ *
10599
+ * @type string
10600
+ */
10601
+ message?: string;
10602
+ /**
10603
+ * 对象名称
10604
+ *
10605
+ * @type string
10606
+ */
10607
+ name?: string;
10608
+ }
10163
10609
  export interface FieldAttribute {
10164
10610
  /**
10165
10611
  * 关联主键字段的绑定信息,格式:关联模型key
@@ -11377,6 +11823,12 @@ export interface FileTaskDTO {
11377
11823
  * @type string
11378
11824
  */
11379
11825
  eDHRType?: string;
11826
+ /**
11827
+ * 表单变更日志打印位置(EACH_FORM_AFTER:衔接表单,INDEPENDENT:独立分开)
11828
+ *
11829
+ * @type string
11830
+ */
11831
+ formChangeLogPrintPosition?: string;
11380
11832
  /**
11381
11833
  * 是否包含半成品批次(当type为EDHR时使用,用于判断打印时是否需要打印半成品批次eDHR)
11382
11834
  *
@@ -13384,6 +13836,32 @@ export interface JoinOnExp {
13384
13836
  export interface JsonNode {
13385
13837
  // 暂无属性
13386
13838
  }
13839
+ export interface KeyNameDTO {
13840
+ /**
13841
+ * key
13842
+ *
13843
+ * @type string
13844
+ */
13845
+ key?: string;
13846
+ /**
13847
+ * 名称
13848
+ *
13849
+ * @type string
13850
+ */
13851
+ name?: string;
13852
+ /**
13853
+ * 关联模型脚本key
13854
+ *
13855
+ * @type string
13856
+ */
13857
+ refKey?: string;
13858
+ /**
13859
+ * 关联模型脚本名称
13860
+ *
13861
+ * @type string
13862
+ */
13863
+ refName?: string;
13864
+ }
13387
13865
  export interface LabelBtwDesigner {
13388
13866
  /**
13389
13867
  *
@@ -13416,7 +13894,7 @@ export interface LabelBtwDesigner {
13416
13894
  */
13417
13895
  name?: string;
13418
13896
  /**
13419
- * btw模板路径类型:local本地选择、common网络共享(打印服务掉线状态,前端回显使用,请在保存时传)
13897
+ * btw模板路径类型:abs绝对、rel相对(必传)
13420
13898
  *
13421
13899
  * @type string
13422
13900
  */
@@ -13618,7 +14096,7 @@ export interface LabelRequest {
13618
14096
  */
13619
14097
  dpi?: number;
13620
14098
  /**
13621
- * btw模板的相对路径
14099
+ * btw模板的相对路径(绝对路径、相对路径都要传递)
13622
14100
  *
13623
14101
  * @type string
13624
14102
  */
@@ -13648,7 +14126,7 @@ export interface LabelRequest {
13648
14126
  */
13649
14127
  name?: string;
13650
14128
  /**
13651
- * btw模板路径类型:local本地选择、common网络共享(打印服务掉线状态,前端回显使用,请在保存时传)
14129
+ * btw模板路径类型:rel 相对路径、abs 绝对路径(btw时必传)
13652
14130
  *
13653
14131
  * @type string
13654
14132
  */
@@ -13824,7 +14302,7 @@ export interface LabelResponse {
13824
14302
  */
13825
14303
  name?: string;
13826
14304
  /**
13827
- *
14305
+ * btw模板路径类型:btw模板路径类型:rel 相对路径、abs 绝对路径
13828
14306
  *
13829
14307
  * @type string
13830
14308
  */
@@ -13929,6 +14407,220 @@ export interface MaterialNo4TaskResponse {
13929
14407
  * @type string
13930
14408
  */
13931
14409
  mfgOrderId?: string;
14410
+ /**
14411
+ * 产品编码
14412
+ *
14413
+ * @type string
14414
+ */
14415
+ productCode?: string;
14416
+ /**
14417
+ * 产品ID
14418
+ *
14419
+ * @type string
14420
+ */
14421
+ productId?: string;
14422
+ /**
14423
+ * 产品名称
14424
+ *
14425
+ * @type string
14426
+ */
14427
+ productName?: string;
14428
+ /**
14429
+ * 产品规格
14430
+ *
14431
+ * @type string
14432
+ */
14433
+ productSpec?: string;
14434
+ /**
14435
+ * 关联父批次号
14436
+ *
14437
+ * @type string
14438
+ */
14439
+ relatedParentName?: string;
14440
+ }
14441
+ export interface MdmCategoryRequest {
14442
+ /**
14443
+ * 审核模版状态
14444
+ *
14445
+ * @type boolean
14446
+ */
14447
+ approveTmplOperatingState?: boolean;
14448
+ /**
14449
+ * 业务分类
14450
+ *
14451
+ * @type string
14452
+ */
14453
+ bizType?: string;
14454
+ /**
14455
+ * 创建人部门id
14456
+ *
14457
+ * @type string
14458
+ */
14459
+ createOrgId?: string;
14460
+ /**
14461
+ * 全路径
14462
+ *
14463
+ * @type string
14464
+ */
14465
+ fullPath?: string;
14466
+ /**
14467
+ * 层级
14468
+ *
14469
+ * @type number
14470
+ */
14471
+ level?: number;
14472
+ /**
14473
+ * 修改人部门id
14474
+ *
14475
+ * @type string
14476
+ */
14477
+ modifyOrgId?: string;
14478
+ /**
14479
+ * 名称
14480
+ *
14481
+ * @type string
14482
+ */
14483
+ name?: string;
14484
+ /**
14485
+ * 父节点ID
14486
+ *
14487
+ * @type string
14488
+ */
14489
+ parentId?: string;
14490
+ /**
14491
+ * 业务分类
14492
+ *
14493
+ * @type string
14494
+ */
14495
+ procDefId?: string;
14496
+ /**
14497
+ * 排序号
14498
+ *
14499
+ * @type number
14500
+ */
14501
+ sortNum?: number;
14502
+ /**
14503
+ * 租户id
14504
+ *
14505
+ * @type string
14506
+ */
14507
+ tenantId?: string;
14508
+ }
14509
+ export interface MdmCategoryResponse {
14510
+ /**
14511
+ * 审核模版状态
14512
+ *
14513
+ * @type boolean
14514
+ */
14515
+ approveTmplOperatingState?: boolean;
14516
+ /**
14517
+ * 业务分类
14518
+ *
14519
+ * @type string
14520
+ */
14521
+ bizType?: string;
14522
+ /**
14523
+ * 子分类
14524
+ *
14525
+ * @type MdmCategoryResponse[]
14526
+ */
14527
+ children?: MdmCategoryResponse[];
14528
+ /**
14529
+ * 创建人部门id
14530
+ *
14531
+ * @type string
14532
+ */
14533
+ createOrgId?: string;
14534
+ /**
14535
+ *
14536
+ *
14537
+ * @type string
14538
+ */
14539
+ createTime?: string;
14540
+ /**
14541
+ *
14542
+ *
14543
+ * @type string
14544
+ */
14545
+ createUserId?: string;
14546
+ /**
14547
+ *
14548
+ *
14549
+ * @type string
14550
+ */
14551
+ createUserName?: string;
14552
+ /**
14553
+ * 全路径
14554
+ *
14555
+ * @type string
14556
+ */
14557
+ fullPath?: string;
14558
+ /**
14559
+ * 主键
14560
+ *
14561
+ * @type string
14562
+ */
14563
+ id?: string;
14564
+ /**
14565
+ * 层级
14566
+ *
14567
+ * @type number
14568
+ */
14569
+ level?: number;
14570
+ /**
14571
+ * 修改人部门id
14572
+ *
14573
+ * @type string
14574
+ */
14575
+ modifyOrgId?: string;
14576
+ /**
14577
+ *
14578
+ *
14579
+ * @type string
14580
+ */
14581
+ modifyTime?: string;
14582
+ /**
14583
+ *
14584
+ *
14585
+ * @type string
14586
+ */
14587
+ modifyUserId?: string;
14588
+ /**
14589
+ *
14590
+ *
14591
+ * @type string
14592
+ */
14593
+ modifyUserName?: string;
14594
+ /**
14595
+ * 名称
14596
+ *
14597
+ * @type string
14598
+ */
14599
+ name?: string;
14600
+ /**
14601
+ * 父节点ID
14602
+ *
14603
+ * @type string
14604
+ */
14605
+ parentId?: string;
14606
+ /**
14607
+ * 流程定义id
14608
+ *
14609
+ * @type string
14610
+ */
14611
+ procDefId?: string;
14612
+ /**
14613
+ * 排序号
14614
+ *
14615
+ * @type number
14616
+ */
14617
+ sortNum?: number;
14618
+ /**
14619
+ * 租户id
14620
+ *
14621
+ * @type string
14622
+ */
14623
+ tenantId?: string;
13932
14624
  }
13933
14625
  export interface MenuConfig {
13934
14626
  /**
@@ -15075,6 +15767,12 @@ export interface MessageTmplOpenedRequest {
15075
15767
  opened?: number;
15076
15768
  }
15077
15769
  export interface MessageTmplRequest {
15770
+ /**
15771
+ * 业务类型
15772
+ *
15773
+ * @type string
15774
+ */
15775
+ businessType?: string;
15078
15776
  /**
15079
15777
  * 数据源,0模型,1自定义
15080
15778
  *
@@ -15161,6 +15859,12 @@ export interface MessageTmplRequest {
15161
15859
  tenantId?: string;
15162
15860
  }
15163
15861
  export interface MessageTmplResponse {
15862
+ /**
15863
+ * 业务类型
15864
+ *
15865
+ * @type string
15866
+ */
15867
+ businessType?: string;
15164
15868
  /**
15165
15869
  *
15166
15870
  *
@@ -15295,6 +15999,12 @@ export interface MessageTmplSendRequest {
15295
15999
  * @type string
15296
16000
  */
15297
16001
  actId?: string;
16002
+ /**
16003
+ * 业务类型
16004
+ *
16005
+ * @type string
16006
+ */
16007
+ businessType?: string;
15298
16008
  /**
15299
16009
  *
15300
16010
  *
@@ -17000,6 +17710,38 @@ export interface ModelPermissionRelationResponse {
17000
17710
  */
17001
17711
  sortNum?: number;
17002
17712
  }
17713
+ export interface ModelRelationInfo {
17714
+ /**
17715
+ *
17716
+ *
17717
+ * @type KeyNameDTO[]
17718
+ */
17719
+ bizScriptList?: KeyNameDTO[];
17720
+ /**
17721
+ *
17722
+ *
17723
+ * @type KeyNameDTO[]
17724
+ */
17725
+ enumModelList?: KeyNameDTO[];
17726
+ /**
17727
+ *
17728
+ *
17729
+ * @type KeyNameDTO[]
17730
+ */
17731
+ eventScriptList?: KeyNameDTO[];
17732
+ /**
17733
+ *
17734
+ *
17735
+ * @type KeyNameDTO[]
17736
+ */
17737
+ refModelList?: KeyNameDTO[];
17738
+ /**
17739
+ *
17740
+ *
17741
+ * @type KeyNameDTO[]
17742
+ */
17743
+ subModelList?: KeyNameDTO[];
17744
+ }
17003
17745
  export interface ModelRelationResponse {
17004
17746
  /**
17005
17747
  * 分类id
@@ -17401,6 +18143,18 @@ export interface OfProcessControlRequest {
17401
18143
  * @type string
17402
18144
  */
17403
18145
  effectiveDate?: string;
18146
+ /**
18147
+ * 发起审核时流程定义ID数据的快照
18148
+ *
18149
+ * @type string
18150
+ */
18151
+ procDefId?: string;
18152
+ /**
18153
+ * 流程来源(DEFAULT:默认配置,USER_DEFINED:自定义)
18154
+ *
18155
+ * @type string
18156
+ */
18157
+ processSource?: string;
17404
18158
  /**
17405
18159
  * 模板ID
17406
18160
  *
@@ -17785,6 +18539,12 @@ export interface OfProcessSaveRequest {
17785
18539
  * @type string
17786
18540
  */
17787
18541
  opinion?: string;
18542
+ /**
18543
+ * 备注
18544
+ *
18545
+ * @type string
18546
+ */
18547
+ remark?: string;
17788
18548
  /**
17789
18549
  * 签名数据
17790
18550
  *
@@ -18396,11 +19156,17 @@ export interface OnlineFormDesignDTO {
18396
19156
  */
18397
19157
  direction?: string;
18398
19158
  /**
18399
- * 表单bom
19159
+ * 表单子表bom
18400
19160
  *
18401
19161
  * @type object[]
18402
19162
  */
18403
19163
  formTmplBomList?: object[];
19164
+ /**
19165
+ * 表单对象bom
19166
+ *
19167
+ * @type object[]
19168
+ */
19169
+ formTmplObjectBomList?: object[];
18404
19170
  /**
18405
19171
  * 高度
18406
19172
  *
@@ -18444,140 +19210,6 @@ export interface OnlineFormDesignDTO {
18444
19210
  */
18445
19211
  width?: number;
18446
19212
  }
18447
- export interface OnlineFormFieldMetaVO {
18448
- /**
18449
- * 所属字段
18450
- *
18451
- * @type string
18452
- */
18453
- belongingField?: string;
18454
- /**
18455
- * 所属对象
18456
- *
18457
- * @type string
18458
- */
18459
- belongingObject?: string;
18460
- /**
18461
- * 主子关联 绑定子模型字段
18462
- *
18463
- * @type string
18464
- */
18465
- bindFieldKey?: string;
18466
- /**
18467
- * 关联主键字段的绑定信息,格式:关联模型key
18468
- *
18469
- * @type string
18470
- */
18471
- bindInfo?: string;
18472
- /**
18473
- * 业务字段类型
18474
- *
18475
- * @type string
18476
- */
18477
- bizType?: string;
18478
- /**
18479
- * 自定义字段ID
18480
- *
18481
- * @type string
18482
- */
18483
- customFieldId?: string;
18484
- /**
18485
- * 自定义对象ID
18486
- *
18487
- * @type string
18488
- */
18489
- customObjectId?: string;
18490
- /**
18491
- * 默认值
18492
- *
18493
- * @type DefaultValue
18494
- */
18495
- defaultValue?: DefaultValue;
18496
- /**
18497
- * 描述
18498
- *
18499
- * @type string
18500
- */
18501
- description?: string;
18502
- /**
18503
- * 多语言配置
18504
- *
18505
- * @type string
18506
- */
18507
- i18nConfig?: string;
18508
- /**
18509
- * 字段key
18510
- *
18511
- * @type string
18512
- */
18513
- key?: string;
18514
- /**
18515
- * 映射类型(公式,函数等实际映射的类型)
18516
- *
18517
- * @type string
18518
- */
18519
- mappingType?: string;
18520
- /**
18521
- * 模型定义表key
18522
- *
18523
- * @type string
18524
- */
18525
- modelKey?: string;
18526
- /**
18527
- * 名称
18528
- *
18529
- * @type string
18530
- */
18531
- name?: string;
18532
- /**
18533
- * 父字段(RDO模型使用,0/1)
18534
- *
18535
- * @type number
18536
- */
18537
- parentField?: number;
18538
- /**
18539
- * 主子/引用关联模型类型(NDO/RDO)
18540
- *
18541
- * @type string
18542
- */
18543
- refModelType?: string;
18544
- /**
18545
- * 是否必填:(0否,1是)
18546
- *
18547
- * @type number
18548
- */
18549
- required?: number;
18550
- /**
18551
- * 特有属性配置选项(json格式)
18552
- *
18553
- * @type IObject
18554
- */
18555
- specificConfig?: IObject;
18556
- /**
18557
- * 子模型Key
18558
- *
18559
- * @type string
18560
- */
18561
- subModelKey?: string;
18562
- /**
18563
- * 字段建模是否启用追溯
18564
- *
18565
- * @type number
18566
- */
18567
- traceEnabled?: number;
18568
- /**
18569
- * 数据类型 (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/公式条件)
18570
- *
18571
- * @type string
18572
- */
18573
- type?: string;
18574
- /**
18575
- * 约束类型 GLOBAL:全局唯一 LEVEL:层级唯一
18576
- *
18577
- * @type UniqueConstraint
18578
- */
18579
- uniqueConstraint?: UniqueConstraint;
18580
- }
18581
19213
  export interface OnlineFormInsTaskRequest {
18582
19214
  /**
18583
19215
  * 表单类型:BASE 基础表单、PROCESS 流程表单、VIEW视图表单、TEXT文本表单
@@ -19027,6 +19659,12 @@ export interface OnlineFormInstance {
19027
19659
  * @type string
19028
19660
  */
19029
19661
  recordNo?: string;
19662
+ /**
19663
+ *
19664
+ *
19665
+ * @type string
19666
+ */
19667
+ refillApproveStatus?: string;
19030
19668
  /**
19031
19669
  *
19032
19670
  *
@@ -19045,6 +19683,12 @@ export interface OnlineFormInstance {
19045
19683
  * @type string[]
19046
19684
  */
19047
19685
  relatedMfgOrderIds?: string[];
19686
+ /**
19687
+ *
19688
+ *
19689
+ * @type string
19690
+ */
19691
+ relatedParentName?: string;
19048
19692
  /**
19049
19693
  *
19050
19694
  *
@@ -19227,6 +19871,18 @@ export interface OnlineFormInstanceDTO {
19227
19871
  * @type string
19228
19872
  */
19229
19873
  params?: string;
19874
+ /**
19875
+ *
19876
+ *
19877
+ * @type string
19878
+ */
19879
+ refillApproveStatus?: string;
19880
+ /**
19881
+ *
19882
+ *
19883
+ * @type string[]
19884
+ */
19885
+ relatedFieldTypeList?: string[];
19230
19886
  /**
19231
19887
  *
19232
19888
  *
@@ -19797,6 +20453,12 @@ export interface OnlineFormInstanceResponse {
19797
20453
  * @type string
19798
20454
  */
19799
20455
  recordNo?: string;
20456
+ /**
20457
+ * 重填状态
20458
+ *
20459
+ * @type string
20460
+ */
20461
+ refillApproveStatus?: string;
19800
20462
  /**
19801
20463
  * 关联批次(已过时,但前端目前还是老代码还在用)
19802
20464
  *
@@ -19821,6 +20483,12 @@ export interface OnlineFormInstanceResponse {
19821
20483
  * @type string[]
19822
20484
  */
19823
20485
  relatedMfgOrderIds?: string[];
20486
+ /**
20487
+ * 关联批号
20488
+ *
20489
+ * @type string
20490
+ */
20491
+ relatedParentName?: string;
19824
20492
  /**
19825
20493
  * 关联id
19826
20494
  *
@@ -19893,6 +20561,12 @@ export interface OnlineFormInstanceResponse {
19893
20561
  * @type string
19894
20562
  */
19895
20563
  tmplVersion?: string;
20564
+ /**
20565
+ * 事务配置
20566
+ *
20567
+ * @type string
20568
+ */
20569
+ txnConfig?: string;
19896
20570
  /**
19897
20571
  * 事务实例ID
19898
20572
  *
@@ -30301,6 +30975,12 @@ export interface ProductReleaseFormInstanctDTO {
30301
30975
  * @type string
30302
30976
  */
30303
30977
  recordNo?: string;
30978
+ /**
30979
+ *
30980
+ *
30981
+ * @type string
30982
+ */
30983
+ refillApproveStatus?: string;
30304
30984
  /**
30305
30985
  *
30306
30986
  *
@@ -30319,6 +30999,12 @@ export interface ProductReleaseFormInstanctDTO {
30319
30999
  * @type string[]
30320
31000
  */
30321
31001
  relatedMfgOrderIds?: string[];
31002
+ /**
31003
+ *
31004
+ *
31005
+ * @type string
31006
+ */
31007
+ relatedParentName?: string;
30322
31008
  /**
30323
31009
  *
30324
31010
  *
@@ -32785,6 +33471,12 @@ export interface ScriptContrastDTO {
32785
33471
  * @type string
32786
33472
  */
32787
33473
  mergeResult?: string;
33474
+ /**
33475
+ *
33476
+ *
33477
+ * @type string
33478
+ */
33479
+ module?: string;
32788
33480
  /**
32789
33481
  *
32790
33482
  *
@@ -32804,13 +33496,13 @@ export interface ScriptContrastDTO {
32804
33496
  */
32805
33497
  sortNum?: number;
32806
33498
  /**
32807
- * 源版本内容json
33499
+ * 源版版本内容json
32808
33500
  *
32809
33501
  * @type string
32810
33502
  */
32811
33503
  sourceContent?: string;
32812
33504
  /**
32813
- * 导入版本内容json
33505
+ * 目标版本内容json
32814
33506
  *
32815
33507
  * @type string
32816
33508
  */
@@ -33509,12 +34201,30 @@ export interface SecurityConfig {
33509
34201
  * @type number
33510
34202
  */
33511
34203
  signExpiryDate?: number;
34204
+ /**
34205
+ * 刷卡签名关联字段(username_/账号,emp_no_/工号,mobile_/手机号码)
34206
+ *
34207
+ * @type string
34208
+ */
34209
+ signField?: string;
34210
+ /**
34211
+ * 刷卡签名关联字段名称,冗余前端显示用
34212
+ *
34213
+ * @type string
34214
+ */
34215
+ signFieldName?: string;
33512
34216
  /**
33513
34217
  * 签名密码-首次登录是否修改密码
33514
34218
  *
33515
34219
  * @type number
33516
34220
  */
33517
34221
  signFirstTimeChangePassword?: number;
34222
+ /**
34223
+ * 签名方式
34224
+ *
34225
+ * @type string
34226
+ */
34227
+ signMethod?: string;
33518
34228
  /**
33519
34229
  * 签名密码-密码最小长度
33520
34230
  *
@@ -38962,6 +39672,146 @@ export interface 发送消息DTO {
38962
39672
  */
38963
39673
  type?: string;
38964
39674
  }
39675
+ export interface 在线表单字段创建请求 {
39676
+ /**
39677
+ * 所属字段
39678
+ *
39679
+ * @type string
39680
+ */
39681
+ belongingField?: string;
39682
+ /**
39683
+ * 所属对象
39684
+ *
39685
+ * @type string
39686
+ */
39687
+ belongingObject?: string;
39688
+ /**
39689
+ * 主子关联 绑定子模型字段
39690
+ *
39691
+ * @type string
39692
+ */
39693
+ bindFieldKey?: string;
39694
+ /**
39695
+ * 关联主键字段的绑定信息,格式:关联模型key
39696
+ *
39697
+ * @type string
39698
+ */
39699
+ bindInfo?: string;
39700
+ /**
39701
+ * 业务字段类型
39702
+ *
39703
+ * @type string
39704
+ */
39705
+ bizType?: string;
39706
+ /**
39707
+ * 自定义字段ID
39708
+ *
39709
+ * @type string
39710
+ */
39711
+ customFieldId?: string;
39712
+ /**
39713
+ * 自定义对象ID
39714
+ *
39715
+ * @type string
39716
+ */
39717
+ customObjectId?: string;
39718
+ /**
39719
+ * 默认值
39720
+ *
39721
+ * @type DefaultValue
39722
+ */
39723
+ defaultValue?: DefaultValue;
39724
+ /**
39725
+ * 描述
39726
+ *
39727
+ * @type string
39728
+ */
39729
+ description?: string;
39730
+ /**
39731
+ * 多语言配置
39732
+ *
39733
+ * @type string
39734
+ */
39735
+ i18nConfig?: string;
39736
+ /**
39737
+ * 字段key
39738
+ *
39739
+ * @type string
39740
+ */
39741
+ key?: string;
39742
+ /**
39743
+ * 映射类型(公式,函数等实际映射的类型)
39744
+ *
39745
+ * @type string
39746
+ */
39747
+ mappingType?: string;
39748
+ /**
39749
+ * 模型定义表key
39750
+ *
39751
+ * @type string
39752
+ */
39753
+ modelKey?: string;
39754
+ /**
39755
+ * 名称
39756
+ *
39757
+ * @type string
39758
+ */
39759
+ name?: string;
39760
+ /**
39761
+ * 父字段(RDO模型使用,0/1)
39762
+ *
39763
+ * @type number
39764
+ */
39765
+ parentField?: number;
39766
+ /**
39767
+ * 主子/引用关联模型类型(NDO/RDO)
39768
+ *
39769
+ * @type string
39770
+ */
39771
+ refModelType?: string;
39772
+ /**
39773
+ * 是否必填:(0否,1是)
39774
+ *
39775
+ * @type number
39776
+ */
39777
+ required?: number;
39778
+ /**
39779
+ * 特有属性配置选项(json格式)
39780
+ *
39781
+ * @type IObject
39782
+ */
39783
+ specificConfig?: IObject;
39784
+ /**
39785
+ * 子模型Key
39786
+ *
39787
+ * @type string
39788
+ */
39789
+ subModelKey?: string;
39790
+ /**
39791
+ * 表单模板版本id;使用字段库字段时必填
39792
+ *
39793
+ * @type string
39794
+ */
39795
+ tmplVersionId?: string;
39796
+ /**
39797
+ * 字段建模是否启用追溯
39798
+ *
39799
+ * @type number
39800
+ */
39801
+ traceEnabled?: number;
39802
+ /**
39803
+ * 数据类型 (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/公式条件)
39804
+ *
39805
+ * @type string
39806
+ */
39807
+ type?: string;
39808
+ /**
39809
+ * 约束类型 GLOBAL:全局唯一 LEVEL:层级唯一
39810
+ *
39811
+ * @type UniqueConstraint
39812
+ */
39813
+ uniqueConstraint?: UniqueConstraint;
39814
+ }
38965
39815
  export interface 批量添加表单模板请求 {
38966
39816
  /**
38967
39817
  * 分类ID
@@ -39154,6 +40004,194 @@ export interface 添加表单模板请求 {
39154
40004
  */
39155
40005
  version?: string;
39156
40006
  }
40007
+ export interface 自定义字段导入结果 {
40008
+ /**
40009
+ * 新增数量
40010
+ *
40011
+ * @type number
40012
+ */
40013
+ created?: number;
40014
+ /**
40015
+ * 失败数量
40016
+ *
40017
+ * @type number
40018
+ */
40019
+ failed?: number;
40020
+ /**
40021
+ * 失败明细
40022
+ *
40023
+ * @type Failure[]
40024
+ */
40025
+ failures?: Failure[];
40026
+ /**
40027
+ * 文件名
40028
+ *
40029
+ * @type string
40030
+ */
40031
+ fileName?: string;
40032
+ /**
40033
+ * 数据总数
40034
+ *
40035
+ * @type number
40036
+ */
40037
+ total?: number;
40038
+ }
40039
+ export interface 自定义字段导出请求 {
40040
+ /**
40041
+ * 需要导出的字段id,为空时导出全部
40042
+ *
40043
+ * @type string[]
40044
+ */
40045
+ ids?: string[];
40046
+ }
40047
+ export interface 自定义字段引用表单模板 {
40048
+ /**
40049
+ * 编码
40050
+ *
40051
+ * @type string
40052
+ */
40053
+ code?: string;
40054
+ /**
40055
+ * 模式
40056
+ *
40057
+ * @type string
40058
+ */
40059
+ edition?: string;
40060
+ /**
40061
+ * 表单类型
40062
+ *
40063
+ * @type string
40064
+ */
40065
+ formType?: string;
40066
+ /**
40067
+ * 表单模板id
40068
+ *
40069
+ * @type string
40070
+ */
40071
+ id?: string;
40072
+ /**
40073
+ * 名称
40074
+ *
40075
+ * @type string
40076
+ */
40077
+ name?: string;
40078
+ /**
40079
+ * 文档类型
40080
+ *
40081
+ * @type string
40082
+ */
40083
+ officeType?: string;
40084
+ /**
40085
+ * 线下版本
40086
+ *
40087
+ * @type string
40088
+ */
40089
+ offlineVersion?: string;
40090
+ }
40091
+ export interface 自定义对象主表保存请求 {
40092
+ /**
40093
+ *
40094
+ *
40095
+ * @type string
40096
+ */
40097
+ description?: string;
40098
+ /**
40099
+ *
40100
+ *
40101
+ * @type string
40102
+ */
40103
+ key?: string;
40104
+ /**
40105
+ *
40106
+ *
40107
+ * @type string
40108
+ */
40109
+ name?: string;
40110
+ }
40111
+ export interface 自定义对象字段请求 {
40112
+ /**
40113
+ *
40114
+ *
40115
+ * @type string
40116
+ */
40117
+ bizType?: string;
40118
+ /**
40119
+ * 字段定义id;修改已有字段时传入
40120
+ *
40121
+ * @type string
40122
+ */
40123
+ id?: string;
40124
+ /**
40125
+ *
40126
+ *
40127
+ * @type string
40128
+ */
40129
+ key?: string;
40130
+ /**
40131
+ *
40132
+ *
40133
+ * @type string
40134
+ */
40135
+ name?: string;
40136
+ /**
40137
+ *
40138
+ *
40139
+ * @type number
40140
+ */
40141
+ required?: number;
40142
+ /**
40143
+ *
40144
+ *
40145
+ * @type string
40146
+ */
40147
+ type?: string;
40148
+ /**
40149
+ * 字段唯一配置JSON
40150
+ *
40151
+ * @type string
40152
+ */
40153
+ uniqueConstraint?: string;
40154
+ }
40155
+ export interface 自定义对象导入结果 {
40156
+ /**
40157
+ * 新增数量
40158
+ *
40159
+ * @type number
40160
+ */
40161
+ created?: number;
40162
+ /**
40163
+ * 失败数量
40164
+ *
40165
+ * @type number
40166
+ */
40167
+ failed?: number;
40168
+ /**
40169
+ * 失败明细
40170
+ *
40171
+ * @type Failure[]
40172
+ */
40173
+ failures?: Failure[];
40174
+ /**
40175
+ * 文件名
40176
+ *
40177
+ * @type string
40178
+ */
40179
+ fileName?: string;
40180
+ /**
40181
+ * 数据总数
40182
+ *
40183
+ * @type number
40184
+ */
40185
+ total?: number;
40186
+ }
40187
+ export interface 自定义对象导出请求 {
40188
+ /**
40189
+ * 需要导出的对象id,为空时导出全部
40190
+ *
40191
+ * @type string[]
40192
+ */
40193
+ ids?: string[];
40194
+ }
39157
40195
  export interface 解压失败原因响应 {
39158
40196
  /**
39159
40197
  * 完成时间