@gct-paas/api 0.1.6-dev.6 → 0.1.6-dev.7

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 (63) hide show
  1. package/dist/index.esm.min.js +1 -0
  2. package/es/apaas/service/api-config.mjs +452 -5
  3. package/es/apaas/service/apis/app-global-settings.service.d.ts +0 -4
  4. package/es/apaas/service/apis/app-org.service.d.ts +0 -4
  5. package/es/apaas/service/apis/approve.service.d.ts +54 -0
  6. package/es/apaas/service/apis/audit-log.service.d.ts +7 -0
  7. package/es/apaas/service/apis/category.service.d.ts +8 -0
  8. package/es/apaas/service/apis/data-source.service.d.ts +4 -0
  9. package/es/apaas/service/apis/detail-page.service.d.ts +96 -0
  10. package/es/apaas/service/apis/dhr.service.d.ts +2 -2
  11. package/es/apaas/service/apis/doc-control-started.service.d.ts +76 -1
  12. package/es/apaas/service/apis/doc-control-task-todo.service.d.ts +12 -0
  13. package/es/apaas/service/apis/edhr-instance.service.d.ts +16 -0
  14. package/es/apaas/service/apis/edhr-tmpl.service.d.ts +18 -5
  15. package/es/apaas/service/apis/enum-model-field.service.d.ts +8 -0
  16. package/es/apaas/service/apis/excel.service.d.ts +6 -2
  17. package/es/apaas/service/apis/field-meta.service.d.ts +21 -0
  18. package/es/apaas/service/apis/file.service.d.ts +4 -0
  19. package/es/apaas/service/apis/inspection-category.service.d.ts +84 -0
  20. package/es/apaas/service/apis/label.service.d.ts +11 -3
  21. package/es/apaas/service/apis/med-pro.service.d.ts +108 -0
  22. package/es/apaas/service/apis/medPro.service.d.ts +49 -21
  23. package/es/apaas/service/apis/model-meta.service.d.ts +15 -1
  24. package/es/apaas/service/apis/model-method.service.d.ts +19 -1
  25. package/es/apaas/service/apis/online-form-instance.service.d.ts +78 -0
  26. package/es/apaas/service/apis/online-form-tmpl-export.service.d.ts +29 -0
  27. package/es/apaas/service/apis/online-form-tmpl.service.d.ts +77 -0
  28. package/es/apaas/service/apis/online-form.service.d.ts +8 -1
  29. package/es/apaas/service/apis/process-task-done.service.d.ts +28 -1
  30. package/es/apaas/service/apis/process-task-todo.service.d.ts +44 -1
  31. package/es/apaas/service/apis/product-release-category.service.d.ts +84 -0
  32. package/es/apaas/service/apis/ss.service.d.ts +8 -0
  33. package/es/apaas/service/apis/transaction.service.d.ts +157 -0
  34. package/es/apaas/service/apis/user.service.d.ts +31 -0
  35. package/es/apaas/service/entities.d.ts +3159 -76
  36. package/es/apaas/service/index.d.ts +14 -0
  37. package/es/ipaas/service/api-config.mjs +29 -5
  38. package/es/ipaas/service/apis/camel.service.d.ts +18 -5
  39. package/es/ipaas/service/apis/flow.service.d.ts +77 -1
  40. package/es/ipaas/service/apis/runtime.service.d.ts +13 -0
  41. package/es/ipaas/service/entities.d.ts +168 -0
  42. package/es/platform/service/api-config.mjs +48 -2
  43. package/es/platform/service/apis/api.service.d.ts +52 -1
  44. package/es/platform/service/apis/bi-app.service.d.ts +4 -3
  45. package/es/platform/service/apis/file-task.service.d.ts +13 -0
  46. package/es/platform/service/apis/invoke-log.service.d.ts +17 -1
  47. package/es/platform/service/apis/license.service.d.ts +18 -0
  48. package/es/platform/service/apis/login-log.service.d.ts +13 -0
  49. package/es/platform/service/apis/plat.service.d.ts +7 -0
  50. package/es/platform/service/entities.d.ts +529 -4
  51. package/es/service/api-manage.mjs +2 -2
  52. package/es/service/api-service.d.ts +13 -0
  53. package/es/service/api-service.interface.d.ts +6 -9
  54. package/es/service/api-service.mjs +42 -17
  55. package/es/service/http.util.d.ts +8 -1
  56. package/es/service/http.util.mjs +22 -4
  57. package/es/service/index.mjs +1 -3
  58. package/es/types/index.d.ts +27 -0
  59. package/es/utils/index.d.ts +7 -0
  60. package/es/utils/index.mjs +6 -0
  61. package/package.json +1 -1
  62. package/dist/gct-api.esm.min.js +0 -1
  63. package/dist/gct-api.system.min.js +0 -1
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable @typescript-eslint/no-empty-object-type */
2
2
  export interface AccountConfig {
3
3
  /**
4
- * 应用类型 枚举(钉钉 DINGDING,企微 QIYEWEIXIN,飞书 FEISHU)
4
+ * 应用类型 枚举 (钉钉 DINGDING,企微 QIYEWEIXIN,飞书 FEISHU,微软 MICROSOFT)
5
5
  *
6
6
  * @type string
7
7
  */
@@ -648,6 +648,12 @@ export interface AppendRelatedInstRequest {
648
648
  * @type string
649
649
  */
650
650
  mfgOrderId?: string;
651
+ /**
652
+ * 模块类型
653
+ *
654
+ * @type string
655
+ */
656
+ module?: string;
651
657
  /**
652
658
  * 在线表单是否必填 1: 必填 0 非必填
653
659
  *
@@ -1276,6 +1282,12 @@ export interface BindRelatedIndstRequest {
1276
1282
  * @type string
1277
1283
  */
1278
1284
  mfgOrderId?: string;
1285
+ /**
1286
+ * 模块类型
1287
+ *
1288
+ * @type string
1289
+ */
1290
+ module?: string;
1279
1291
  /**
1280
1292
  * 当前批次
1281
1293
  *
@@ -1730,12 +1742,24 @@ export interface BtwNodeVO {
1730
1742
  * @type BtwNodeVO[]
1731
1743
  */
1732
1744
  children?: BtwNodeVO[];
1745
+ /**
1746
+ * 节点路径
1747
+ *
1748
+ * @type string
1749
+ */
1750
+ fullPath?: string;
1733
1751
  /**
1734
1752
  * 节点名称(目录名称、btw文件名称)
1735
1753
  *
1736
1754
  * @type string
1737
1755
  */
1738
1756
  name?: string;
1757
+ /**
1758
+ * btw模板路径类型:local本地选择、common网络共享
1759
+ *
1760
+ * @type string
1761
+ */
1762
+ pathType?: string;
1739
1763
  /**
1740
1764
  *
1741
1765
  *
@@ -2342,6 +2366,12 @@ export interface ChildEdhrInstanceRelationDTO {
2342
2366
  * @type string
2343
2367
  */
2344
2368
  modifyUserName?: string;
2369
+ /**
2370
+ *
2371
+ *
2372
+ * @type string
2373
+ */
2374
+ module?: string;
2345
2375
  /**
2346
2376
  * 引用详情
2347
2377
  *
@@ -3823,6 +3853,68 @@ export interface DashboardSortRequest {
3823
3853
  */
3824
3854
  targetSortNum?: number;
3825
3855
  }
3856
+ export interface DataCollectionInstanceAbandonRequest {
3857
+ /**
3858
+ * 表单实例Id
3859
+ *
3860
+ * @type string
3861
+ */
3862
+ id?: string;
3863
+ /**
3864
+ * 作废原因
3865
+ *
3866
+ * @type string
3867
+ */
3868
+ reason?: string;
3869
+ /**
3870
+ * 签名历史id集合
3871
+ *
3872
+ * @type string[]
3873
+ */
3874
+ signHistoryIds?: string[];
3875
+ /**
3876
+ * 数据采集任务id
3877
+ *
3878
+ * @type string
3879
+ */
3880
+ taskId?: string;
3881
+ }
3882
+ export interface DataCollectionOnlineFormInstanceRequest {
3883
+ /**
3884
+ * 数据采集任务Id
3885
+ *
3886
+ * @type string
3887
+ */
3888
+ dataCollectionTaskId?: string;
3889
+ /**
3890
+ * 表单实例备注名
3891
+ *
3892
+ * @type string
3893
+ */
3894
+ instanceAlias?: string;
3895
+ }
3896
+ export interface DataCollectionOnlineFormInstanceUpdateRequest {
3897
+ /**
3898
+ * 表单实例Id
3899
+ *
3900
+ * @type string
3901
+ */
3902
+ id?: string;
3903
+ /**
3904
+ * 表单实例备注名
3905
+ *
3906
+ * @type string
3907
+ */
3908
+ instanceAlias?: string;
3909
+ }
3910
+ export interface DataCollectionTaskUpdateStatusRequest {
3911
+ /**
3912
+ * 数据采集任务id
3913
+ *
3914
+ * @type string
3915
+ */
3916
+ taskId?: string;
3917
+ }
3826
3918
  export interface DataModelRequest {
3827
3919
  /**
3828
3920
  * 分类id
@@ -4086,6 +4178,12 @@ export interface DataTraceRequest {
4086
4178
  * @type string
4087
4179
  */
4088
4180
  module?: string;
4181
+ /**
4182
+ * 多个模块
4183
+ *
4184
+ * @type string[]
4185
+ */
4186
+ modules?: string[];
4089
4187
  /**
4090
4188
  * 操作类型
4091
4189
  *
@@ -4991,7 +5089,7 @@ export interface DocControlCategoryCompleteVO {
4991
5089
  */
4992
5090
  parentId?: string;
4993
5091
  /**
4994
- * 模板受控流程定义id
5092
+ * 模板审批流程定义id
4995
5093
  *
4996
5094
  * @type string
4997
5095
  */
@@ -5041,6 +5139,92 @@ export interface DocControlProcessResponse {
5041
5139
  */
5042
5140
  operationsDTO?: OfProcessOperationsDTO;
5043
5141
  }
5142
+ export interface DocControlStartedRequest {
5143
+ /**
5144
+ * 受控文件类型:FORM表单模板、EDHR edhr模板
5145
+ *
5146
+ * @type string
5147
+ */
5148
+ controlTmplType?: string;
5149
+ /**
5150
+ * 受控文件版本编码(表单/edhr模板编号)
5151
+ *
5152
+ * @type string
5153
+ */
5154
+ docBaseId?: string;
5155
+ /**
5156
+ * 受控文件版本编码(表单/edhr模板编号)
5157
+ *
5158
+ * @type string
5159
+ */
5160
+ docCode?: string;
5161
+ /**
5162
+ * 受控文件名称(表单/edhr模板名称)
5163
+ *
5164
+ * @type string
5165
+ */
5166
+ docName?: string;
5167
+ /**
5168
+ * 受控文件版本id(表单/edhr模板id)
5169
+ *
5170
+ * @type string
5171
+ */
5172
+ docVersionId?: string;
5173
+ /**
5174
+ * 生效日期
5175
+ *
5176
+ * @type string
5177
+ */
5178
+ effectiveDate?: string;
5179
+ /**
5180
+ * 发起人iD
5181
+ *
5182
+ * @type string
5183
+ */
5184
+ initiator?: string;
5185
+ /**
5186
+ * 发起人姓名
5187
+ *
5188
+ * @type string
5189
+ */
5190
+ initiatorName?: string;
5191
+ /**
5192
+ * 线下版本号
5193
+ *
5194
+ * @type string
5195
+ */
5196
+ offlineVersion?: string;
5197
+ /**
5198
+ * 流程实例id
5199
+ *
5200
+ * @type string
5201
+ */
5202
+ processInstanceId?: string;
5203
+ /**
5204
+ * 发起审核时数据的快照
5205
+ *
5206
+ * @type string
5207
+ */
5208
+ snapshot?: string;
5209
+ /**
5210
+ * 提报时间
5211
+ *
5212
+ * @type string
5213
+ */
5214
+ startTime?: string;
5215
+ /**
5216
+ * 状态
5217
+ *
5218
+ * @type string
5219
+ */
5220
+ status?: string;
5221
+ /**
5222
+ * 版本
5223
+ *
5224
+ * @type string
5225
+ */
5226
+ version?: string;
5227
+ }
5044
5228
  export interface DocControlStartedResponse {
5045
5229
  /**
5046
5230
  * 分类名称
@@ -5102,6 +5286,12 @@ export interface DocControlStartedResponse {
5102
5286
  * @type string
5103
5287
  */
5104
5288
  docVersionId?: string;
5289
+ /**
5290
+ * 生效日期
5291
+ *
5292
+ * @type string
5293
+ */
5294
+ effectiveDate?: string;
5105
5295
  /**
5106
5296
  * 主键
5107
5297
  *
@@ -5150,12 +5340,24 @@ export interface DocControlStartedResponse {
5150
5340
  * @type string
5151
5341
  */
5152
5342
  processInstanceId?: string;
5343
+ /**
5344
+ * 发起审核时数据的快照
5345
+ *
5346
+ * @type string
5347
+ */
5348
+ snapshot?: string;
5153
5349
  /**
5154
5350
  * 提报时间
5155
5351
  *
5156
5352
  * @type string
5157
5353
  */
5158
5354
  startTime?: string;
5355
+ /**
5356
+ * 状态
5357
+ *
5358
+ * @type string
5359
+ */
5360
+ status?: string;
5159
5361
  /**
5160
5362
  * 版本
5161
5363
  *
@@ -5224,6 +5426,12 @@ export interface DocControlTaskDoneResponse {
5224
5426
  * @type string
5225
5427
  */
5226
5428
  docCode?: string;
5429
+ /**
5430
+ * 文控管理-我的发起ID
5431
+ *
5432
+ * @type string
5433
+ */
5434
+ docControlStartedId?: string;
5227
5435
  /**
5228
5436
  * 受控文件名称(表单/edhr模板名称)
5229
5437
  *
@@ -5376,6 +5584,12 @@ export interface DocControlTaskTodoResponse {
5376
5584
  * @type string
5377
5585
  */
5378
5586
  docCode?: string;
5587
+ /**
5588
+ * 文控管理-我的发起ID
5589
+ *
5590
+ * @type string
5591
+ */
5592
+ docControlStartedId?: string;
5379
5593
  /**
5380
5594
  * 受控文件名称(表单/edhr模板名称)
5381
5595
  *
@@ -5462,6 +5676,12 @@ export interface DocControlTaskTodoResponse {
5462
5676
  version?: string;
5463
5677
  }
5464
5678
  export interface DocOutlineBase {
5679
+ /**
5680
+ * 基础单据id(DHR ID)
5681
+ *
5682
+ * @type string
5683
+ */
5684
+ baseId?: string;
5465
5685
  /**
5466
5686
  *
5467
5687
  *
@@ -5604,6 +5824,12 @@ export interface DocOutlineResponse {
5604
5824
  * @type string
5605
5825
  */
5606
5826
  instanceStatus?: string;
5827
+ /**
5828
+ * 模型Key
5829
+ *
5830
+ * @type string
5831
+ */
5832
+ modelKey?: string;
5607
5833
  /**
5608
5834
  *
5609
5835
  *
@@ -5634,6 +5860,12 @@ export interface DocOutlineResponse {
5634
5860
  * @type number
5635
5861
  */
5636
5862
  ofRequired?: number;
5863
+ /**
5864
+ * 办公类型
5865
+ *
5866
+ * @type string
5867
+ */
5868
+ officeType?: string;
5637
5869
  /**
5638
5870
  * 父节点id
5639
5871
  *
@@ -6476,6 +6708,12 @@ export interface EdhrInstance {
6476
6708
  * @type string
6477
6709
  */
6478
6710
  modifyUserName?: string;
6711
+ /**
6712
+ *
6713
+ *
6714
+ * @type string
6715
+ */
6716
+ module?: string;
6479
6717
  /**
6480
6718
  *
6481
6719
  *
@@ -6628,6 +6866,12 @@ export interface EdhrInstanceQueryRequest {
6628
6866
  * @type string
6629
6867
  */
6630
6868
  modifyUserId?: string;
6869
+ /**
6870
+ * 模块类型
6871
+ *
6872
+ * @type string
6873
+ */
6874
+ module?: string;
6631
6875
  /**
6632
6876
  * 操作人
6633
6877
  *
@@ -6704,6 +6948,12 @@ export interface EdhrInstanceRequest {
6704
6948
  * @type string
6705
6949
  */
6706
6950
  materialStatus?: string;
6951
+ /**
6952
+ * 模块类型
6953
+ *
6954
+ * @type string
6955
+ */
6956
+ module?: string;
6707
6957
  /**
6708
6958
  * 实例参数(业务扩展属性)
6709
6959
  *
@@ -6826,6 +7076,12 @@ export interface EdhrInstanceResponse {
6826
7076
  * @type string
6827
7077
  */
6828
7078
  modifyUserName?: string;
7079
+ /**
7080
+ * 模块类型
7081
+ *
7082
+ * @type string
7083
+ */
7084
+ module?: string;
6829
7085
  /**
6830
7086
  * 实例参数(业务扩展属性)
6831
7087
  *
@@ -7223,6 +7479,56 @@ export interface EdhrLogUserEntity {
7223
7479
  */
7224
7480
  userId?: string;
7225
7481
  }
7482
+ export interface EdhrSummaryRelationDhrTraceDetail {
7483
+ /**
7484
+ * 关联批次
7485
+ *
7486
+ * @type string
7487
+ */
7488
+ container?: string;
7489
+ /**
7490
+ * DHR名称
7491
+ *
7492
+ * @type string
7493
+ */
7494
+ dhrName?: string;
7495
+ /**
7496
+ * 关联工单
7497
+ *
7498
+ * @type string
7499
+ */
7500
+ mfgOrder?: string;
7501
+ /**
7502
+ * 操作类型
7503
+ *
7504
+ * @type string
7505
+ */
7506
+ operateType?: string;
7507
+ /**
7508
+ * 产品编码
7509
+ *
7510
+ * @type string
7511
+ */
7512
+ productCode?: string;
7513
+ /**
7514
+ * 产品名称
7515
+ *
7516
+ * @type string
7517
+ */
7518
+ productName?: string;
7519
+ /**
7520
+ * 来源
7521
+ *
7522
+ * @type string
7523
+ */
7524
+ source?: string;
7525
+ /**
7526
+ * 规格型号
7527
+ *
7528
+ * @type string
7529
+ */
7530
+ spec?: string;
7531
+ }
7226
7532
  export interface EdhrSummaryTraceDetail {
7227
7533
  /**
7228
7534
  * 表单备注名
@@ -7261,6 +7567,76 @@ export interface EdhrSummaryTraceDetail {
7261
7567
  */
7262
7568
  source?: string;
7263
7569
  }
7570
+ export interface EdhrSummaryTraceEntity {
7571
+ /**
7572
+ * 关联eDhr实例
7573
+ *
7574
+ * @type EdhrSummaryRelationDhrTraceDetail[]
7575
+ */
7576
+ edhrInstList?: EdhrSummaryRelationDhrTraceDetail[];
7577
+ /**
7578
+ * 表单实例
7579
+ *
7580
+ * @type EdhrSummaryTraceDetail[]
7581
+ */
7582
+ formInstList?: EdhrSummaryTraceDetail[];
7583
+ }
7584
+ export interface EdhrTmplCommonRequest {
7585
+ /**
7586
+ * 父id
7587
+ *
7588
+ * @type string
7589
+ */
7590
+ baseId?: string;
7591
+ /**
7592
+ * 分类id
7593
+ *
7594
+ * @type string
7595
+ */
7596
+ categoryId?: string;
7597
+ /**
7598
+ * 编号
7599
+ *
7600
+ * @type string
7601
+ */
7602
+ code?: string;
7603
+ /**
7604
+ * 是否默认版本 1是 0否
7605
+ *
7606
+ * @type number
7607
+ */
7608
+ default?: number;
7609
+ /**
7610
+ * 备注
7611
+ *
7612
+ * @type string
7613
+ */
7614
+ description?: string;
7615
+ /**
7616
+ * 模块类型
7617
+ *
7618
+ * @type string
7619
+ */
7620
+ module?: string;
7621
+ /**
7622
+ * 名称
7623
+ *
7624
+ * @type string
7625
+ */
7626
+ name?: string;
7627
+ /**
7628
+ * 电子记录-线下版本号
7629
+ *
7630
+ * @type string
7631
+ */
7632
+ offlineVersion?: string;
7633
+ /**
7634
+ * 版本
7635
+ *
7636
+ * @type string
7637
+ */
7638
+ version?: string;
7639
+ }
7264
7640
  export interface EdhrTmplRequest {
7265
7641
  /**
7266
7642
  * 父id
@@ -7312,6 +7688,12 @@ export interface EdhrTmplRequest {
7312
7688
  version?: string;
7313
7689
  }
7314
7690
  export interface EdhrTmplResponse {
7691
+ /**
7692
+ * 审核状态
7693
+ *
7694
+ * @type string
7695
+ */
7696
+ approveStatus?: string;
7315
7697
  /**
7316
7698
  * 父id
7317
7699
  *
@@ -7366,6 +7748,12 @@ export interface EdhrTmplResponse {
7366
7748
  * @type string
7367
7749
  */
7368
7750
  description?: string;
7751
+ /**
7752
+ * 文控管理-我的发起ID
7753
+ *
7754
+ * @type string
7755
+ */
7756
+ docControlStartedId?: string;
7369
7757
  /**
7370
7758
  * ID
7371
7759
  *
@@ -7390,6 +7778,12 @@ export interface EdhrTmplResponse {
7390
7778
  * @type string
7391
7779
  */
7392
7780
  modifyUserName?: string;
7781
+ /**
7782
+ * 模块类型
7783
+ *
7784
+ * @type string
7785
+ */
7786
+ module?: string;
7393
7787
  /**
7394
7788
  * 名称
7395
7789
  *
@@ -7402,6 +7796,18 @@ export interface EdhrTmplResponse {
7402
7796
  * @type string
7403
7797
  */
7404
7798
  offlineVersion?: string;
7799
+ /**
7800
+ * 状态
7801
+ *
7802
+ * @type boolean
7803
+ */
7804
+ operatingState?: boolean;
7805
+ /**
7806
+ * 审批流程实例ID
7807
+ *
7808
+ * @type string
7809
+ */
7810
+ procInstId?: string;
7405
7811
  /**
7406
7812
  * 版本
7407
7813
  *
@@ -7687,6 +8093,20 @@ export interface EnumModelFieldResponse {
7687
8093
  */
7688
8094
  value?: string;
7689
8095
  }
8096
+ export interface EnumModelFieldSortReq {
8097
+ /**
8098
+ * 枚举模型id
8099
+ *
8100
+ * @type string
8101
+ */
8102
+ enumModelId?: string;
8103
+ /**
8104
+ *
8105
+ *
8106
+ * @type string[]
8107
+ */
8108
+ ids?: string[];
8109
+ }
7690
8110
  export interface EnumModelRequest {
7691
8111
  /**
7692
8112
  * 分类id
@@ -8731,6 +9151,20 @@ export interface ExpConfig {
8731
9151
  */
8732
9152
  relationColumns?: string[];
8733
9153
  }
9154
+ export interface ExportFormRequest {
9155
+ /**
9156
+ *
9157
+ *
9158
+ * @type string[]
9159
+ */
9160
+ ids?: string[];
9161
+ /**
9162
+ *
9163
+ *
9164
+ * @type string
9165
+ */
9166
+ type?: string;
9167
+ }
8734
9168
  export interface ExprDTO {
8735
9169
  /**
8736
9170
  * 字段名,最外层才有
@@ -8796,6 +9230,12 @@ export interface ExprEntity {
8796
9230
  value?: IObject;
8797
9231
  }
8798
9232
  export interface ExtFieldConfig {
9233
+ /**
9234
+ * 启用密文展示(密文:1 ,明文:0)
9235
+ *
9236
+ * @type number
9237
+ */
9238
+ encrypted?: number;
8799
9239
  /**
8800
9240
  * 字段名称
8801
9241
  *
@@ -9064,6 +9504,12 @@ export interface FieldMeta {
9064
9504
  * @type string
9065
9505
  */
9066
9506
  bindInfo?: string;
9507
+ /**
9508
+ * 业务字段类型
9509
+ *
9510
+ * @type string
9511
+ */
9512
+ bizType?: string;
9067
9513
  /**
9068
9514
  *
9069
9515
  *
@@ -9286,6 +9732,12 @@ export interface FieldMetaDTO {
9286
9732
  * @type string
9287
9733
  */
9288
9734
  bindInfo?: string;
9735
+ /**
9736
+ * 业务字段类型
9737
+ *
9738
+ * @type string
9739
+ */
9740
+ bizType?: string;
9289
9741
  /**
9290
9742
  *
9291
9743
  *
@@ -9802,6 +10254,12 @@ export interface FieldMetaVO {
9802
10254
  * @type string
9803
10255
  */
9804
10256
  bindInfo?: string;
10257
+ /**
10258
+ * 业务字段类型
10259
+ *
10260
+ * @type string
10261
+ */
10262
+ bizType?: string;
9805
10263
  /**
9806
10264
  * 默认值
9807
10265
  *
@@ -9966,6 +10424,12 @@ export interface FileResourceResponse {
9966
10424
  url?: string;
9967
10425
  }
9968
10426
  export interface FileTaskDTO {
10427
+ /**
10428
+ * 是否包含半成品批次(当type为EDHR时使用,用于判断打印时是否需要打印半成品批次eDHR)
10429
+ *
10430
+ * @type boolean
10431
+ */
10432
+ includeSemi?: boolean;
9969
10433
  /**
9970
10434
  * 模板实例id
9971
10435
  *
@@ -10051,6 +10515,38 @@ export interface FontConfig {
10051
10515
  */
10052
10516
  value?: string;
10053
10517
  }
10518
+ export interface FormInstBomResponse {
10519
+ /**
10520
+ *
10521
+ *
10522
+ * @type object[]
10523
+ */
10524
+ bomEntries?: object[];
10525
+ /**
10526
+ *
10527
+ *
10528
+ * @type object[]
10529
+ */
10530
+ formTmplBomList?: object[];
10531
+ /**
10532
+ *
10533
+ *
10534
+ * @type string
10535
+ */
10536
+ productionIdentificationId?: string;
10537
+ /**
10538
+ *
10539
+ *
10540
+ * @type number
10541
+ */
10542
+ qty?: number;
10543
+ /**
10544
+ *
10545
+ *
10546
+ * @type object[]
10547
+ */
10548
+ sequenceEntries?: object[];
10549
+ }
10054
10550
  export interface FormInstLockResponse {
10055
10551
  /**
10056
10552
  *
@@ -10072,6 +10568,12 @@ export interface FormInstLockResponse {
10072
10568
  loginUserName?: string;
10073
10569
  }
10074
10570
  export interface FormRelateDTO {
10571
+ /**
10572
+ * 审核状态
10573
+ *
10574
+ * @type string
10575
+ */
10576
+ approveStatus?: string;
10075
10577
  /**
10076
10578
  * rdo父id
10077
10579
  *
@@ -10120,6 +10622,12 @@ export interface FormRelateDTO {
10120
10622
  * @type string
10121
10623
  */
10122
10624
  description?: string;
10625
+ /**
10626
+ * 文控管理-我的发起ID
10627
+ *
10628
+ * @type string
10629
+ */
10630
+ docControlStartedId?: string;
10123
10631
  /**
10124
10632
  * 版本 (PROFESSIONAL:专业版/EASY:普通版)
10125
10633
  *
@@ -10174,18 +10682,42 @@ export interface FormRelateDTO {
10174
10682
  * @type string
10175
10683
  */
10176
10684
  modifyUserName?: string;
10685
+ /**
10686
+ * DHR所属模块
10687
+ *
10688
+ * @type string
10689
+ */
10690
+ module?: string;
10177
10691
  /**
10178
10692
  * 分类数据名称
10179
10693
  *
10180
10694
  * @type string
10181
10695
  */
10182
10696
  name?: string;
10697
+ /**
10698
+ *
10699
+ *
10700
+ * @type string
10701
+ */
10702
+ officeType?: string;
10183
10703
  /**
10184
10704
  * 线下版本号
10185
10705
  *
10186
10706
  * @type string
10187
10707
  */
10188
10708
  offlineVersion?: string;
10709
+ /**
10710
+ * 状态
10711
+ *
10712
+ * @type boolean
10713
+ */
10714
+ operatingState?: boolean;
10715
+ /**
10716
+ * 审批流程实例ID
10717
+ *
10718
+ * @type string
10719
+ */
10720
+ procInstId?: string;
10189
10721
  /**
10190
10722
  * 分类数据id
10191
10723
  *
@@ -11033,6 +11565,168 @@ export interface ImportModelData {
11033
11565
  */
11034
11566
  sheetName?: string;
11035
11567
  }
11568
+ export interface ImportReportResponse {
11569
+ /**
11570
+ *
11571
+ *
11572
+ * @type string
11573
+ */
11574
+ createTime?: string;
11575
+ /**
11576
+ *
11577
+ *
11578
+ * @type string
11579
+ */
11580
+ createUserId?: string;
11581
+ /**
11582
+ *
11583
+ *
11584
+ * @type string
11585
+ */
11586
+ createUserName?: string;
11587
+ /**
11588
+ * 文件Id
11589
+ *
11590
+ * @type string
11591
+ */
11592
+ fileId?: string;
11593
+ /**
11594
+ * 主键
11595
+ *
11596
+ * @type string
11597
+ */
11598
+ id?: string;
11599
+ /**
11600
+ *
11601
+ *
11602
+ * @type string
11603
+ */
11604
+ modifyTime?: string;
11605
+ /**
11606
+ *
11607
+ *
11608
+ * @type string
11609
+ */
11610
+ modifyUserId?: string;
11611
+ /**
11612
+ *
11613
+ *
11614
+ * @type string
11615
+ */
11616
+ modifyUserName?: string;
11617
+ /**
11618
+ * 报告
11619
+ *
11620
+ * @type string
11621
+ */
11622
+ report?: string;
11623
+ }
11624
+ export interface ImportResponse {
11625
+ /**
11626
+ *
11627
+ *
11628
+ * @type number
11629
+ */
11630
+ endTime?: number;
11631
+ /**
11632
+ *
11633
+ *
11634
+ * @type number
11635
+ */
11636
+ errorCount?: number;
11637
+ /**
11638
+ *
11639
+ *
11640
+ * @type string
11641
+ */
11642
+ errorMessage?: string;
11643
+ /**
11644
+ *
11645
+ *
11646
+ * @type string
11647
+ */
11648
+ fileName?: string;
11649
+ /**
11650
+ *
11651
+ *
11652
+ * @type number
11653
+ */
11654
+ fileSize?: number;
11655
+ /**
11656
+ *
11657
+ *
11658
+ * @type ImportTmplResponse[]
11659
+ */
11660
+ list?: ImportTmplResponse[];
11661
+ /**
11662
+ *
11663
+ *
11664
+ * @type number
11665
+ */
11666
+ processingTime?: number;
11667
+ /**
11668
+ *
11669
+ *
11670
+ * @type number
11671
+ */
11672
+ startTime?: number;
11673
+ /**
11674
+ *
11675
+ *
11676
+ * @type number
11677
+ */
11678
+ successCount?: number;
11679
+ /**
11680
+ *
11681
+ *
11682
+ * @type number
11683
+ */
11684
+ totalLines?: number;
11685
+ }
11686
+ export interface ImportTmplResponse {
11687
+ /**
11688
+ *
11689
+ *
11690
+ * @type string
11691
+ */
11692
+ baseId?: string;
11693
+ /**
11694
+ *
11695
+ *
11696
+ * @type string
11697
+ */
11698
+ categoryName?: string;
11699
+ /**
11700
+ *
11701
+ *
11702
+ * @type string
11703
+ */
11704
+ createTime?: string;
11705
+ /**
11706
+ *
11707
+ *
11708
+ * @type string
11709
+ */
11710
+ failsMessage?: string;
11711
+ /**
11712
+ *
11713
+ *
11714
+ * @type string
11715
+ */
11716
+ name?: string;
11717
+ /**
11718
+ *
11719
+ *
11720
+ * @type string
11721
+ */
11722
+ type?: string;
11723
+ /**
11724
+ *
11725
+ *
11726
+ * @type string
11727
+ */
11728
+ version?: string;
11729
+ }
11036
11730
  export interface ImportVersionRequest {
11037
11731
  /**
11038
11732
  * 应用id
@@ -11059,6 +11753,133 @@ export interface ImportVersionRequest {
11059
11753
  */
11060
11754
  mergeConflictList?: MergeConflictDTO[];
11061
11755
  }
11756
+ export interface InputStream {
11757
+ // 暂无属性
11758
+ }
11759
+ export interface InspectionCategoryRequest {
11760
+ /**
11761
+ * 全路径
11762
+ *
11763
+ * @type string
11764
+ */
11765
+ fullPath?: string;
11766
+ /**
11767
+ * 层级
11768
+ *
11769
+ * @type number
11770
+ */
11771
+ level?: number;
11772
+ /**
11773
+ * 名称
11774
+ *
11775
+ * @type string
11776
+ */
11777
+ name?: string;
11778
+ /**
11779
+ * 父节点ID
11780
+ *
11781
+ * @type string
11782
+ */
11783
+ parentId?: string;
11784
+ /**
11785
+ * 排序号
11786
+ *
11787
+ * @type number
11788
+ */
11789
+ sortNum?: number;
11790
+ }
11791
+ export interface InspectionCategoryResponse {
11792
+ /**
11793
+ * 创建人部门id
11794
+ *
11795
+ * @type string
11796
+ */
11797
+ createOrgId?: string;
11798
+ /**
11799
+ *
11800
+ *
11801
+ * @type string
11802
+ */
11803
+ createTime?: string;
11804
+ /**
11805
+ *
11806
+ *
11807
+ * @type string
11808
+ */
11809
+ createUserId?: string;
11810
+ /**
11811
+ *
11812
+ *
11813
+ * @type string
11814
+ */
11815
+ createUserName?: string;
11816
+ /**
11817
+ * 全路径
11818
+ *
11819
+ * @type string
11820
+ */
11821
+ fullPath?: string;
11822
+ /**
11823
+ * 主键
11824
+ *
11825
+ * @type string
11826
+ */
11827
+ id?: string;
11828
+ /**
11829
+ * 层级
11830
+ *
11831
+ * @type number
11832
+ */
11833
+ level?: number;
11834
+ /**
11835
+ * 修改人部门id
11836
+ *
11837
+ * @type string
11838
+ */
11839
+ modifyOrgId?: string;
11840
+ /**
11841
+ *
11842
+ *
11843
+ * @type string
11844
+ */
11845
+ modifyTime?: string;
11846
+ /**
11847
+ *
11848
+ *
11849
+ * @type string
11850
+ */
11851
+ modifyUserId?: string;
11852
+ /**
11853
+ *
11854
+ *
11855
+ * @type string
11856
+ */
11857
+ modifyUserName?: string;
11858
+ /**
11859
+ * 名称
11860
+ *
11861
+ * @type string
11862
+ */
11863
+ name?: string;
11864
+ /**
11865
+ * 父节点ID
11866
+ *
11867
+ * @type string
11868
+ */
11869
+ parentId?: string;
11870
+ /**
11871
+ * 排序号
11872
+ *
11873
+ * @type number
11874
+ */
11875
+ sortNum?: number;
11876
+ /**
11877
+ * 租户id
11878
+ *
11879
+ * @type string
11880
+ */
11881
+ tenantId?: string;
11882
+ }
11062
11883
  export interface InstanceRelationRequest {
11063
11884
  /**
11064
11885
  * 业务ID
@@ -11084,6 +11905,12 @@ export interface InstanceRelationRequest {
11084
11905
  * @type string
11085
11906
  */
11086
11907
  materialNo?: string;
11908
+ /**
11909
+ * 模块类型
11910
+ *
11911
+ * @type string
11912
+ */
11913
+ module?: string;
11087
11914
  /**
11088
11915
  * 来源批次号
11089
11916
  *
@@ -11164,6 +11991,12 @@ export interface InstanceRelationResponse {
11164
11991
  * @type string
11165
11992
  */
11166
11993
  modifyUserName?: string;
11994
+ /**
11995
+ * 模块类型
11996
+ *
11997
+ * @type string
11998
+ */
11999
+ module?: string;
11167
12000
  /**
11168
12001
  * 来源批次号
11169
12002
  *
@@ -11520,6 +12353,50 @@ export interface JoinOnExp {
11520
12353
  export interface JsonNode {
11521
12354
  // 暂无属性
11522
12355
  }
12356
+ export interface LabelBtwDesigner {
12357
+ /**
12358
+ *
12359
+ *
12360
+ * @type string
12361
+ */
12362
+ designerJson?: string;
12363
+ /**
12364
+ * btw模板的相对路径
12365
+ *
12366
+ * @type string
12367
+ */
12368
+ fullPath?: string;
12369
+ /**
12370
+ *
12371
+ *
12372
+ * @type string
12373
+ */
12374
+ id?: string;
12375
+ /**
12376
+ * 绑定模型key
12377
+ *
12378
+ * @type string
12379
+ */
12380
+ modelKey?: string;
12381
+ /**
12382
+ * BarTender 标签模板
12383
+ *
12384
+ * @type string
12385
+ */
12386
+ name?: string;
12387
+ /**
12388
+ * btw模板路径类型:local本地选择、common网络共享(打印服务掉线状态,前端回显使用,请在保存时传)
12389
+ *
12390
+ * @type string
12391
+ */
12392
+ pathType?: string;
12393
+ /**
12394
+ * 标签模板唯一标识(btw标签模板)
12395
+ *
12396
+ * @type string
12397
+ */
12398
+ printKey?: string;
12399
+ }
11523
12400
  export interface LabelDesigner {
11524
12401
  /**
11525
12402
  *
@@ -11709,6 +12586,12 @@ export interface LabelRequest {
11709
12586
  * @type number
11710
12587
  */
11711
12588
  dpi?: number;
12589
+ /**
12590
+ * btw模板的相对路径
12591
+ *
12592
+ * @type string
12593
+ */
12594
+ fullPath?: string;
11712
12595
  /**
11713
12596
  * 尺寸(高度)
11714
12597
  *
@@ -11733,6 +12616,12 @@ export interface LabelRequest {
11733
12616
  * @type string
11734
12617
  */
11735
12618
  name?: string;
12619
+ /**
12620
+ * btw模板路径类型:local本地选择、common网络共享(打印服务掉线状态,前端回显使用,请在保存时传)
12621
+ *
12622
+ * @type string
12623
+ */
12624
+ pathType?: string;
11736
12625
  /**
11737
12626
  * 标签模板唯一标识(标签模板)
11738
12627
  *
@@ -11831,6 +12720,12 @@ export interface LabelResponse {
11831
12720
  * @type number
11832
12721
  */
11833
12722
  draft?: number;
12723
+ /**
12724
+ * btw模板的相对路径
12725
+ *
12726
+ * @type string
12727
+ */
12728
+ fullPath?: string;
11834
12729
  /**
11835
12730
  * 尺寸(高度)
11836
12731
  *
@@ -11855,6 +12750,12 @@ export interface LabelResponse {
11855
12750
  * @type string
11856
12751
  */
11857
12752
  key?: string;
12753
+ /**
12754
+ * 关联的打印机的mac地址
12755
+ *
12756
+ * @type string
12757
+ */
12758
+ macAddress?: string;
11858
12759
  /**
11859
12760
  * 绑定模型key
11860
12761
  *
@@ -11891,12 +12792,24 @@ export interface LabelResponse {
11891
12792
  * @type string
11892
12793
  */
11893
12794
  name?: string;
12795
+ /**
12796
+ *
12797
+ *
12798
+ * @type string
12799
+ */
12800
+ pathType?: string;
11894
12801
  /**
11895
12802
  * 标签模板唯一标识(标签模板)
11896
12803
  *
11897
12804
  * @type string
11898
12805
  */
11899
12806
  printKey?: string;
12807
+ /**
12808
+ * 关联得打印机名称
12809
+ *
12810
+ * @type string
12811
+ */
12812
+ printName?: string;
11900
12813
  /**
11901
12814
  * 标签格式,zpl/tspl/cpcl/pos/esc/png
11902
12815
  *
@@ -13714,6 +14627,38 @@ export interface MobilePageResponse {
13714
14627
  */
13715
14628
  terminal?: string;
13716
14629
  }
14630
+ export interface ModelAssociationResponse {
14631
+ /**
14632
+ *
14633
+ *
14634
+ * @type number
14635
+ */
14636
+ dataCount?: number;
14637
+ /**
14638
+ *
14639
+ *
14640
+ * @type string
14641
+ */
14642
+ fieldKey?: string;
14643
+ /**
14644
+ *
14645
+ *
14646
+ * @type string
14647
+ */
14648
+ fieldType?: string;
14649
+ /**
14650
+ *
14651
+ *
14652
+ * @type string
14653
+ */
14654
+ modelKey?: string;
14655
+ /**
14656
+ *
14657
+ *
14658
+ * @type string
14659
+ */
14660
+ modelName?: string;
14661
+ }
13717
14662
  export interface ModelBriefInfo {
13718
14663
  /**
13719
14664
  * 种类
@@ -13745,6 +14690,12 @@ export interface ModelBriefInfo {
13745
14690
  * @type string
13746
14691
  */
13747
14692
  name?: string;
14693
+ /**
14694
+ * 模型是否启用数据权限(1:启用,0:禁用)
14695
+ *
14696
+ * @type number
14697
+ */
14698
+ permissionEnabled?: number;
13748
14699
  /**
13749
14700
  * 模型是否为子模型 (1 子模型, 0 非子模型)
13750
14701
  *
@@ -13925,6 +14876,12 @@ export interface ModelFieldInfo {
13925
14876
  * @type string
13926
14877
  */
13927
14878
  functionName?: string;
14879
+ /**
14880
+ * 字段映射类型
14881
+ *
14882
+ * @type string
14883
+ */
14884
+ mappingType?: string;
13928
14885
  /**
13929
14886
  * 原字段key
13930
14887
  *
@@ -14953,6 +15910,12 @@ export interface ModelPermissionRelationResponse {
14953
15910
  * @type string
14954
15911
  */
14955
15912
  modifyUserName?: string;
15913
+ /**
15914
+ * 模型是否启用数据权限(1:启用,0:禁用)
15915
+ *
15916
+ * @type number
15917
+ */
15918
+ permissionEnabled?: number;
14956
15919
  /**
14957
15920
  * 序号
14958
15921
  *
@@ -15149,6 +16112,12 @@ export interface OfBaseSubmitRequest {
15149
16112
  * @type OnlineFormChangeHistoryRequest
15150
16113
  */
15151
16114
  historyRequest?: OnlineFormChangeHistoryRequest;
16115
+ /**
16116
+ * 是否不记录表单日志
16117
+ *
16118
+ * @type boolean
16119
+ */
16120
+ noLog?: boolean;
15152
16121
  /**
15153
16122
  * 在线表单实例id
15154
16123
  *
@@ -15199,6 +16168,12 @@ export interface OfProcessAbandonRequest {
15199
16168
  * @type string
15200
16169
  */
15201
16170
  formType?: string;
16171
+ /**
16172
+ * 是否不记录表单日志
16173
+ *
16174
+ * @type boolean
16175
+ */
16176
+ noLog?: boolean;
15202
16177
  /**
15203
16178
  * 在线表单实例id
15204
16179
  *
@@ -15249,6 +16224,12 @@ export interface OfProcessApproveRequest {
15249
16224
  * @type IObject
15250
16225
  */
15251
16226
  data?: IObject;
16227
+ /**
16228
+ * 是否不记录表单日志
16229
+ *
16230
+ * @type boolean
16231
+ */
16232
+ noLog?: boolean;
15252
16233
  /**
15253
16234
  * 在线表单实例id
15254
16235
  *
@@ -15305,6 +16286,12 @@ export interface OfProcessChangeRequest {
15305
16286
  * @type OnlineFormChangeHistoryRequest
15306
16287
  */
15307
16288
  historyRequest?: OnlineFormChangeHistoryRequest;
16289
+ /**
16290
+ * 是否不记录表单日志
16291
+ *
16292
+ * @type boolean
16293
+ */
16294
+ noLog?: boolean;
15308
16295
  /**
15309
16296
  * 在线表单实例id
15310
16297
  *
@@ -15325,6 +16312,12 @@ export interface OfProcessChangeRequest {
15325
16312
  taskId?: string;
15326
16313
  }
15327
16314
  export interface OfProcessControlRequest {
16315
+ /**
16316
+ * 生效日期
16317
+ *
16318
+ * @type string
16319
+ */
16320
+ effectiveDate?: string;
15328
16321
  /**
15329
16322
  * 模板ID
15330
16323
  *
@@ -15363,6 +16356,12 @@ export interface OfProcessJumpRequest {
15363
16356
  * @type string
15364
16357
  */
15365
16358
  jumpMode?: string;
16359
+ /**
16360
+ * 是否不记录表单日志
16361
+ *
16362
+ * @type boolean
16363
+ */
16364
+ noLog?: boolean;
15366
16365
  /**
15367
16366
  * 在线表单实例id
15368
16367
  *
@@ -15433,6 +16432,12 @@ export interface OfProcessQualifiedRequest {
15433
16432
  * @type IObject
15434
16433
  */
15435
16434
  data?: IObject;
16435
+ /**
16436
+ * 是否不记录表单日志
16437
+ *
16438
+ * @type boolean
16439
+ */
16440
+ noLog?: boolean;
15436
16441
  /**
15437
16442
  * 在线表单实例id
15438
16443
  *
@@ -15497,6 +16502,12 @@ export interface OfProcessReassignRequest {
15497
16502
  * @type IObject
15498
16503
  */
15499
16504
  data?: IObject;
16505
+ /**
16506
+ * 是否不记录表单日志
16507
+ *
16508
+ * @type boolean
16509
+ */
16510
+ noLog?: boolean;
15500
16511
  /**
15501
16512
  * 在线表单实例id
15502
16513
  *
@@ -15599,6 +16610,12 @@ export interface OfProcessReturnRequest {
15599
16610
  * @type IObject
15600
16611
  */
15601
16612
  data?: IObject;
16613
+ /**
16614
+ * 是否不记录表单日志
16615
+ *
16616
+ * @type boolean
16617
+ */
16618
+ noLog?: boolean;
15602
16619
  /**
15603
16620
  * 在线表单实例id
15604
16621
  *
@@ -15667,6 +16684,12 @@ export interface OfProcessSaveRequest {
15667
16684
  * @type boolean
15668
16685
  */
15669
16686
  exceptionFlag?: boolean;
16687
+ /**
16688
+ * 是否不记录表单日志
16689
+ *
16690
+ * @type boolean
16691
+ */
16692
+ noLog?: boolean;
15670
16693
  /**
15671
16694
  * 在线表单实例id
15672
16695
  *
@@ -15735,6 +16758,12 @@ export interface OfProcessSubmitRequest {
15735
16758
  * @type OnlineFormChangeHistoryRequest
15736
16759
  */
15737
16760
  historyRequest?: OnlineFormChangeHistoryRequest;
16761
+ /**
16762
+ * 是否不记录表单日志
16763
+ *
16764
+ * @type boolean
16765
+ */
16766
+ noLog?: boolean;
15738
16767
  /**
15739
16768
  * 在线表单实例id
15740
16769
  *
@@ -16271,6 +17300,12 @@ export interface OnlineFormDesignDTO {
16271
17300
  * @type string
16272
17301
  */
16273
17302
  direction?: string;
17303
+ /**
17304
+ * 表单bom
17305
+ *
17306
+ * @type object[]
17307
+ */
17308
+ formTmplBomList?: object[];
16274
17309
  /**
16275
17310
  * 修改时间
16276
17311
  *
@@ -16309,6 +17344,12 @@ export interface OnlineFormFieldMetaVO {
16309
17344
  * @type string
16310
17345
  */
16311
17346
  bindInfo?: string;
17347
+ /**
17348
+ * 业务字段类型
17349
+ *
17350
+ * @type string
17351
+ */
17352
+ bizType?: string;
16312
17353
  /**
16313
17354
  * 默认值
16314
17355
  *
@@ -16401,6 +17442,12 @@ export interface OnlineFormInsTaskRequest {
16401
17442
  * @type string
16402
17443
  */
16403
17444
  formType?: string;
17445
+ /**
17446
+ * 模块类型
17447
+ *
17448
+ * @type string
17449
+ */
17450
+ module?: string;
16404
17451
  /**
16405
17452
  * 表单实例Id - 更新时传递
16406
17453
  *
@@ -16639,12 +17686,24 @@ export interface OnlineFormInstance {
16639
17686
  * @type string
16640
17687
  */
16641
17688
  ext9?: string;
17689
+ /**
17690
+ *
17691
+ *
17692
+ * @type string
17693
+ */
17694
+ fieldHash?: string;
16642
17695
  /**
16643
17696
  *
16644
17697
  *
16645
17698
  * @type string
16646
17699
  */
16647
17700
  formType?: string;
17701
+ /**
17702
+ *
17703
+ *
17704
+ * @type string
17705
+ */
17706
+ hash?: string;
16648
17707
  /**
16649
17708
  *
16650
17709
  *
@@ -16657,6 +17716,12 @@ export interface OnlineFormInstance {
16657
17716
  * @type string
16658
17717
  */
16659
17718
  id?: string;
17719
+ /**
17720
+ *
17721
+ *
17722
+ * @type string
17723
+ */
17724
+ instanceRelationBusinessId?: string;
16660
17725
  /**
16661
17726
  *
16662
17727
  *
@@ -16729,6 +17794,12 @@ export interface OnlineFormInstance {
16729
17794
  * @type number
16730
17795
  */
16731
17796
  ofRequired?: number;
17797
+ /**
17798
+ *
17799
+ *
17800
+ * @type string
17801
+ */
17802
+ officeType?: string;
16732
17803
  /**
16733
17804
  *
16734
17805
  *
@@ -16795,6 +17866,12 @@ export interface OnlineFormInstance {
16795
17866
  * @type string[]
16796
17867
  */
16797
17868
  relatedMaterialNos?: string[];
17869
+ /**
17870
+ *
17871
+ *
17872
+ * @type string
17873
+ */
17874
+ relationId?: string;
16798
17875
  /**
16799
17876
  *
16800
17877
  *
@@ -16873,6 +17950,12 @@ export interface OnlineFormInstance {
16873
17950
  * @type string
16874
17951
  */
16875
17952
  tmplVersion?: string;
17953
+ /**
17954
+ *
17955
+ *
17956
+ * @type string
17957
+ */
17958
+ txnInstId?: string;
16876
17959
  /**
16877
17960
  *
16878
17961
  *
@@ -16953,12 +18036,24 @@ export interface OnlineFormInstanceDTO {
16953
18036
  * @type string
16954
18037
  */
16955
18038
  ofCode?: string;
18039
+ /**
18040
+ *
18041
+ *
18042
+ * @type string
18043
+ */
18044
+ officeType?: string;
16956
18045
  /**
16957
18046
  *
16958
18047
  *
16959
18048
  * @type string
16960
18049
  */
16961
18050
  params?: string;
18051
+ /**
18052
+ *
18053
+ *
18054
+ * @type string
18055
+ */
18056
+ relationId?: string;
16962
18057
  /**
16963
18058
  *
16964
18059
  *
@@ -16977,6 +18072,12 @@ export interface OnlineFormInstanceDTO {
16977
18072
  * @type string
16978
18073
  */
16979
18074
  tmplName?: string;
18075
+ /**
18076
+ *
18077
+ *
18078
+ * @type string
18079
+ */
18080
+ txnInstId?: string;
16980
18081
  }
16981
18082
  export interface OnlineFormInstanceRelationInfoResponse {
16982
18083
  /**
@@ -17063,6 +18164,12 @@ export interface OnlineFormInstanceRelationInfoResponse {
17063
18164
  * @type string
17064
18165
  */
17065
18166
  ofSerialNo?: string;
18167
+ /**
18168
+ * office类型
18169
+ *
18170
+ * @type string
18171
+ */
18172
+ officeType?: string;
17066
18173
  /**
17067
18174
  * 产品名称
17068
18175
  *
@@ -17179,12 +18286,24 @@ export interface OnlineFormInstanceRequest {
17179
18286
  * @type string
17180
18287
  */
17181
18288
  modelKey?: string;
18289
+ /**
18290
+ *
18291
+ *
18292
+ * @type string
18293
+ */
18294
+ officeType?: string;
17182
18295
  /**
17183
18296
  * 实例参数(业务扩展属性)
17184
18297
  *
17185
18298
  * @type string
17186
18299
  */
17187
18300
  params?: string;
18301
+ /**
18302
+ * 关联id
18303
+ *
18304
+ * @type string
18305
+ */
18306
+ relationId?: string;
17188
18307
  /**
17189
18308
  * 表单模板ID
17190
18309
  *
@@ -17265,6 +18384,12 @@ export interface OnlineFormInstanceResponse {
17265
18384
  * @type string
17266
18385
  */
17267
18386
  designerJson?: string;
18387
+ /**
18388
+ *
18389
+ *
18390
+ * @type string
18391
+ */
18392
+ direction?: string;
17268
18393
  /**
17269
18394
  *
17270
18395
  *
@@ -17325,12 +18450,24 @@ export interface OnlineFormInstanceResponse {
17325
18450
  * @type string
17326
18451
  */
17327
18452
  ext5?: string;
18453
+ /**
18454
+ * 表单BOM
18455
+ *
18456
+ * @type FormInstBomResponse
18457
+ */
18458
+ formInstBom?: FormInstBomResponse;
17328
18459
  /**
17329
18460
  * 表单类型:BASE 基础表单、PROCESS 流程表单、VIEW视图表单、TEXT文本表单
17330
18461
  *
17331
18462
  * @type string
17332
18463
  */
17333
18464
  formType?: string;
18465
+ /**
18466
+ *
18467
+ *
18468
+ * @type number
18469
+ */
18470
+ height?: number;
17334
18471
  /**
17335
18472
  * 主键ID
17336
18473
  *
@@ -17403,6 +18540,12 @@ export interface OnlineFormInstanceResponse {
17403
18540
  * @type number
17404
18541
  */
17405
18542
  ofRequired?: number;
18543
+ /**
18544
+ *
18545
+ *
18546
+ * @type string
18547
+ */
18548
+ officeType?: string;
17406
18549
  /**
17407
18550
  * 操作
17408
18551
  *
@@ -17427,6 +18570,12 @@ export interface OnlineFormInstanceResponse {
17427
18570
  * @type string
17428
18571
  */
17429
18572
  operatorRange?: string;
18573
+ /**
18574
+ *
18575
+ *
18576
+ * @type string
18577
+ */
18578
+ paperSize?: string;
17430
18579
  /**
17431
18580
  * 实例参数(业务扩展属性)
17432
18581
  *
@@ -17475,6 +18624,12 @@ export interface OnlineFormInstanceResponse {
17475
18624
  * @type string[]
17476
18625
  */
17477
18626
  relatedMaterialNos?: string[];
18627
+ /**
18628
+ * 关联id
18629
+ *
18630
+ * @type string
18631
+ */
18632
+ relationId?: string;
17478
18633
  /**
17479
18634
  * 是否重新发送了表单任务:1重新发送了,0没有重新发送(允许重新发送)
17480
18635
  *
@@ -17541,6 +18696,12 @@ export interface OnlineFormInstanceResponse {
17541
18696
  * @type string
17542
18697
  */
17543
18698
  tmplVersion?: string;
18699
+ /**
18700
+ * 事务实例ID
18701
+ *
18702
+ * @type string
18703
+ */
18704
+ txnInstId?: string;
17544
18705
  /**
17545
18706
  * 类型:PROCESS制成、FORM新增表单
17546
18707
  *
@@ -17553,6 +18714,12 @@ export interface OnlineFormInstanceResponse {
17553
18714
  * @type string
17554
18715
  */
17555
18716
  viewType?: string;
18717
+ /**
18718
+ *
18719
+ *
18720
+ * @type number
18721
+ */
18722
+ width?: number;
17556
18723
  }
17557
18724
  export interface OnlineFormInstanceTmplRelationResponse {
17558
18725
  /**
@@ -17833,6 +19000,12 @@ export interface OnlineFormStashRequest {
17833
19000
  * @type boolean
17834
19001
  */
17835
19002
  exceptionFlag?: boolean;
19003
+ /**
19004
+ * 是否不记录表单日志
19005
+ *
19006
+ * @type boolean
19007
+ */
19008
+ noLog?: boolean;
17836
19009
  /**
17837
19010
  * 在线表单实例id
17838
19011
  *
@@ -17851,6 +19024,12 @@ export interface OnlineFormStashRequest {
17851
19024
  * @type string
17852
19025
  */
17853
19026
  remark?: string;
19027
+ /**
19028
+ * 签名
19029
+ *
19030
+ * @type string
19031
+ */
19032
+ signature?: string;
17854
19033
  }
17855
19034
  export interface OnlineFormTmplLogRequest {
17856
19035
  /**
@@ -17929,6 +19108,12 @@ export interface OnlineFormTmplLogResponse {
17929
19108
  tmplId?: string;
17930
19109
  }
17931
19110
  export interface OnlineFormTmplModelResponse {
19111
+ /**
19112
+ * 审核状态
19113
+ *
19114
+ * @type string
19115
+ */
19116
+ approveStatus?: string;
17932
19117
  /**
17933
19118
  * 父id
17934
19119
  *
@@ -17959,6 +19144,12 @@ export interface OnlineFormTmplModelResponse {
17959
19144
  * @type string
17960
19145
  */
17961
19146
  code?: string;
19147
+ /**
19148
+ * 通信配置
19149
+ *
19150
+ * @type string
19151
+ */
19152
+ communicationConfig?: string;
17962
19153
  /**
17963
19154
  * 受控状态(UNCONTROLLED:期初,RUNNING:受控中,CONTROLLED:已受控)
17964
19155
  *
@@ -18007,6 +19198,12 @@ export interface OnlineFormTmplModelResponse {
18007
19198
  * @type string
18008
19199
  */
18009
19200
  direction?: string;
19201
+ /**
19202
+ * 文控管理-我的发起ID
19203
+ *
19204
+ * @type string
19205
+ */
19206
+ docControlStartedId?: string;
18010
19207
  /**
18011
19208
  * 数据源key
18012
19209
  *
@@ -18085,12 +19282,24 @@ export interface OnlineFormTmplModelResponse {
18085
19282
  * @type string
18086
19283
  */
18087
19284
  name?: string;
19285
+ /**
19286
+ * 文档类型
19287
+ *
19288
+ * @type string
19289
+ */
19290
+ officeType?: string;
18088
19291
  /**
18089
19292
  * 线下版本号
18090
19293
  *
18091
19294
  * @type string
18092
19295
  */
18093
19296
  offlineVersion?: string;
19297
+ /**
19298
+ * 状态
19299
+ *
19300
+ * @type boolean
19301
+ */
19302
+ operatingState?: boolean;
18094
19303
  /**
18095
19304
  * 操作
18096
19305
  *
@@ -18109,6 +19318,12 @@ export interface OnlineFormTmplModelResponse {
18109
19318
  * @type string
18110
19319
  */
18111
19320
  permissionConfig?: string;
19321
+ /**
19322
+ * 审批流程实例ID
19323
+ *
19324
+ * @type string
19325
+ */
19326
+ procInstId?: string;
18112
19327
  /**
18113
19328
  * 运行时json
18114
19329
  *
@@ -18121,6 +19336,18 @@ export interface OnlineFormTmplModelResponse {
18121
19336
  * @type string
18122
19337
  */
18123
19338
  script?: string;
19339
+ /**
19340
+ * 原导入模板ID
19341
+ *
19342
+ * @type string
19343
+ */
19344
+ sourceImportFormTmplId?: string;
19345
+ /**
19346
+ * 升级配置
19347
+ *
19348
+ * @type string
19349
+ */
19350
+ updateRemark?: string;
18124
19351
  /**
18125
19352
  * 版本
18126
19353
  *
@@ -18185,6 +19412,12 @@ export interface OnlineFormTmplRequest {
18185
19412
  * @type string
18186
19413
  */
18187
19414
  code?: string;
19415
+ /**
19416
+ * 通信配置
19417
+ *
19418
+ * @type string
19419
+ */
19420
+ communicationConfig?: string;
18188
19421
  /**
18189
19422
  * 是否默认版本 1是 0否
18190
19423
  *
@@ -18233,6 +19466,12 @@ export interface OnlineFormTmplRequest {
18233
19466
  * @type FieldColumnMapping[]
18234
19467
  */
18235
19468
  fieldConfig?: FieldColumnMapping[];
19469
+ /**
19470
+ * 表单bom
19471
+ *
19472
+ * @type object[]
19473
+ */
19474
+ formTmplBomList?: object[];
18236
19475
  /**
18237
19476
  * 表单类型:BASE 基础表单、PROCESS 流程表单、VIEW视图表单、TEXT文本表单
18238
19477
  *
@@ -18257,6 +19496,12 @@ export interface OnlineFormTmplRequest {
18257
19496
  * @type string
18258
19497
  */
18259
19498
  name?: string;
19499
+ /**
19500
+ * 文档类型
19501
+ *
19502
+ * @type string
19503
+ */
19504
+ officeType?: string;
18260
19505
  /**
18261
19506
  * 电子记录-线下版本号
18262
19507
  *
@@ -18319,6 +19564,12 @@ export interface OnlineFormTmplRequest {
18319
19564
  width?: number;
18320
19565
  }
18321
19566
  export interface OnlineFormTmplResponse {
19567
+ /**
19568
+ * 审核状态
19569
+ *
19570
+ * @type string
19571
+ */
19572
+ approveStatus?: string;
18322
19573
  /**
18323
19574
  * 父id
18324
19575
  *
@@ -18349,6 +19600,12 @@ export interface OnlineFormTmplResponse {
18349
19600
  * @type string
18350
19601
  */
18351
19602
  code?: string;
19603
+ /**
19604
+ * 通信配置
19605
+ *
19606
+ * @type string
19607
+ */
19608
+ communicationConfig?: string;
18352
19609
  /**
18353
19610
  * 受控状态(UNCONTROLLED:期初,RUNNING:受控中,CONTROLLED:已受控)
18354
19611
  *
@@ -18397,6 +19654,12 @@ export interface OnlineFormTmplResponse {
18397
19654
  * @type string
18398
19655
  */
18399
19656
  direction?: string;
19657
+ /**
19658
+ * 文控管理-我的发起ID
19659
+ *
19660
+ * @type string
19661
+ */
19662
+ docControlStartedId?: string;
18400
19663
  /**
18401
19664
  * 数据源key
18402
19665
  *
@@ -18469,12 +19732,24 @@ export interface OnlineFormTmplResponse {
18469
19732
  * @type string
18470
19733
  */
18471
19734
  name?: string;
19735
+ /**
19736
+ * 文档类型
19737
+ *
19738
+ * @type string
19739
+ */
19740
+ officeType?: string;
18472
19741
  /**
18473
19742
  * 线下版本号
18474
19743
  *
18475
19744
  * @type string
18476
19745
  */
18477
19746
  offlineVersion?: string;
19747
+ /**
19748
+ * 状态
19749
+ *
19750
+ * @type boolean
19751
+ */
19752
+ operatingState?: boolean;
18478
19753
  /**
18479
19754
  * 操作
18480
19755
  *
@@ -18493,6 +19768,12 @@ export interface OnlineFormTmplResponse {
18493
19768
  * @type string
18494
19769
  */
18495
19770
  permissionConfig?: string;
19771
+ /**
19772
+ * 审批流程实例ID
19773
+ *
19774
+ * @type string
19775
+ */
19776
+ procInstId?: string;
18496
19777
  /**
18497
19778
  * 运行时json
18498
19779
  *
@@ -18505,6 +19786,18 @@ export interface OnlineFormTmplResponse {
18505
19786
  * @type string
18506
19787
  */
18507
19788
  script?: string;
19789
+ /**
19790
+ * 原导入模板ID
19791
+ *
19792
+ * @type string
19793
+ */
19794
+ sourceImportFormTmplId?: string;
19795
+ /**
19796
+ * 升级配置
19797
+ *
19798
+ * @type string
19799
+ */
19800
+ updateRemark?: string;
18508
19801
  /**
18509
19802
  * 版本
18510
19803
  *
@@ -19020,6 +20313,14 @@ export interface OperateTypeDTO {
19020
20313
  */
19021
20314
  name?: string;
19022
20315
  }
20316
+ export interface OperatingStateRequest {
20317
+ /**
20318
+ * 状态
20319
+ *
20320
+ * @type boolean
20321
+ */
20322
+ operatingState?: boolean;
20323
+ }
19023
20324
  export interface OrgAddOrUpdateUserRequest {
19024
20325
  /**
19025
20326
  * 头像url相对路径
@@ -21794,6 +23095,62 @@ export interface ProcessApprovalLogResponse {
21794
23095
  */
21795
23096
  userName?: string;
21796
23097
  }
23098
+ export interface ProcessApproveRequest {
23099
+ /**
23100
+ * 点击的按钮的key
23101
+ *
23102
+ * @type string
23103
+ */
23104
+ btnKey?: string;
23105
+ /**
23106
+ * 业务ID
23107
+ *
23108
+ * @type string
23109
+ */
23110
+ businessId?: string;
23111
+ /**
23112
+ * 操作的按钮配置
23113
+ *
23114
+ * @type string
23115
+ */
23116
+ buttonConfig?: string;
23117
+ /**
23118
+ * 提交的数据
23119
+ *
23120
+ * @type IObject
23121
+ */
23122
+ data?: IObject;
23123
+ /**
23124
+ * EDHR实例ID
23125
+ *
23126
+ * @type string
23127
+ */
23128
+ edhrInstanceId?: string;
23129
+ /**
23130
+ * 表单实例ID
23131
+ *
23132
+ * @type string
23133
+ */
23134
+ ofInstanceId?: string;
23135
+ /**
23136
+ * 意见
23137
+ *
23138
+ * @type string
23139
+ */
23140
+ opinion?: string;
23141
+ /**
23142
+ * 签名数据
23143
+ *
23144
+ * @type string
23145
+ */
23146
+ signature?: string;
23147
+ /**
23148
+ * 任务id
23149
+ *
23150
+ * @type string
23151
+ */
23152
+ taskId?: string;
23153
+ }
21797
23154
  export interface ProcessApproveUser {
21798
23155
  /**
21799
23156
  *
@@ -24711,6 +26068,24 @@ export interface ProcessPathResponse {
24711
26068
  * @type string
24712
26069
  */
24713
26070
  tmplId?: string;
26071
+ /**
26072
+ * 事务定义id
26073
+ *
26074
+ * @type string
26075
+ */
26076
+ txnDefinitionId?: string;
26077
+ /**
26078
+ * 事务实例id
26079
+ *
26080
+ * @type string
26081
+ */
26082
+ txnInstId?: string;
26083
+ /**
26084
+ * 事务实例状态
26085
+ *
26086
+ * @type string
26087
+ */
26088
+ txnInstStatus?: string;
24714
26089
  }
24715
26090
  export interface ProcessPathUserRequest {
24716
26091
  /**
@@ -24854,6 +26229,106 @@ export interface ProcessPathUserResponse {
24854
26229
  */
24855
26230
  taskId?: string;
24856
26231
  }
26232
+ export interface ProcessReassign4InterfereRequest {
26233
+ /**
26234
+ * 业务ID
26235
+ *
26236
+ * @type string
26237
+ */
26238
+ businessId?: string;
26239
+ /**
26240
+ * Edhr实例id
26241
+ *
26242
+ * @type string
26243
+ */
26244
+ edhrInstanceId?: string;
26245
+ /**
26246
+ * 表单实例ID
26247
+ *
26248
+ * @type string
26249
+ */
26250
+ ofInstanceId?: string;
26251
+ /**
26252
+ * 意见
26253
+ *
26254
+ * @type string
26255
+ */
26256
+ opinion?: string;
26257
+ /**
26258
+ * 任务id
26259
+ *
26260
+ * @type string
26261
+ */
26262
+ taskId?: string;
26263
+ /**
26264
+ * 转给的用户id
26265
+ *
26266
+ * @type string
26267
+ */
26268
+ toUserId?: string;
26269
+ }
26270
+ export interface ProcessReassignRequest {
26271
+ /**
26272
+ * 点击的按钮key
26273
+ *
26274
+ * @type string
26275
+ */
26276
+ btnKey?: string;
26277
+ /**
26278
+ * 业务ID
26279
+ *
26280
+ * @type string
26281
+ */
26282
+ businessId?: string;
26283
+ /**
26284
+ * 操作的按钮配置
26285
+ *
26286
+ * @type string
26287
+ */
26288
+ buttonConfig?: string;
26289
+ /**
26290
+ * 提交的数据
26291
+ *
26292
+ * @type IObject
26293
+ */
26294
+ data?: IObject;
26295
+ /**
26296
+ * EDHR实例ID
26297
+ *
26298
+ * @type string
26299
+ */
26300
+ edhrInstanceId?: string;
26301
+ /**
26302
+ * 表单实例ID
26303
+ *
26304
+ * @type string
26305
+ */
26306
+ ofInstanceId?: string;
26307
+ /**
26308
+ * 意见
26309
+ *
26310
+ * @type string
26311
+ */
26312
+ opinion?: string;
26313
+ /**
26314
+ * 签名数据
26315
+ *
26316
+ * @type string
26317
+ */
26318
+ signature?: string;
26319
+ /**
26320
+ * 任务id
26321
+ *
26322
+ * @type string
26323
+ */
26324
+ taskId?: string;
26325
+ /**
26326
+ * 转给的用户id
26327
+ *
26328
+ * @type string
26329
+ */
26330
+ toUserId?: string;
26331
+ }
24857
26332
  export interface ProcessRequest {
24858
26333
  /**
24859
26334
  * 分类id
@@ -25026,183 +26501,235 @@ export interface ProcessResponse {
25026
26501
  */
25027
26502
  type?: string;
25028
26503
  }
25029
- export interface ProcessTaskDoneResponse {
26504
+ export interface ProcessReturn4InterfereRequest {
25030
26505
  /**
25031
- * 处理人ID
26506
+ * 业务ID
25032
26507
  *
25033
26508
  * @type string
25034
26509
  */
25035
- assigneeId?: string;
26510
+ businessId?: string;
25036
26511
  /**
25037
- * 处理人姓名
26512
+ * EDHR实例ID
25038
26513
  *
25039
26514
  * @type string
25040
26515
  */
25041
- assigneeName?: string;
26516
+ edhrInstanceId?: string;
25042
26517
  /**
25043
- * 业务编号(关联其他业务数据的编号)
26518
+ * 表单实例ID
25044
26519
  *
25045
26520
  * @type string
25046
26521
  */
25047
- businessCode?: string;
26522
+ ofInstanceId?: string;
25048
26523
  /**
25049
- * 业务id(关联其他业务数据的id)
26524
+ * 意见
25050
26525
  *
25051
26526
  * @type string
25052
26527
  */
25053
- businessId?: string;
26528
+ opinion?: string;
25054
26529
  /**
25055
- * 表单来源
26530
+ * 任务id
25056
26531
  *
25057
26532
  * @type string
25058
26533
  */
25059
- businessType?: string;
26534
+ taskId?: string;
26535
+ }
26536
+ export interface ProcessReturnRequest {
25060
26537
  /**
26538
+ * 点击的按钮key
25061
26539
  *
26540
+ * @type string
26541
+ */
26542
+ btnKey?: string;
26543
+ /**
26544
+ * 业务ID
25062
26545
  *
25063
26546
  * @type string
25064
26547
  */
25065
- createTime?: string;
26548
+ businessId?: string;
26549
+ /**
26550
+ * 操作的按钮配置
26551
+ *
26552
+ * @type string
26553
+ */
26554
+ buttonConfig?: string;
25066
26555
  /**
26556
+ * 提交的数据
25067
26557
  *
26558
+ * @type IObject
26559
+ */
26560
+ data?: IObject;
26561
+ /**
26562
+ * EDHR实例ID
25068
26563
  *
25069
26564
  * @type string
25070
26565
  */
25071
- createUserId?: string;
26566
+ edhrInstanceId?: string;
25072
26567
  /**
26568
+ * 表单实例ID
25073
26569
  *
26570
+ * @type string
26571
+ */
26572
+ ofInstanceId?: string;
26573
+ /**
26574
+ * 意见
25074
26575
  *
25075
26576
  * @type string
25076
26577
  */
25077
- createUserName?: string;
26578
+ opinion?: string;
25078
26579
  /**
25079
- * 当前表单实例关联之大纲id
26580
+ * 签名数据
25080
26581
  *
25081
26582
  * @type string
25082
26583
  */
25083
- docOutlineId?: string;
26584
+ signature?: string;
25084
26585
  /**
25085
- * edhr实例id
26586
+ * 任务id
25086
26587
  *
25087
26588
  * @type string
25088
26589
  */
25089
- edhrInstanceId?: string;
26590
+ taskId?: string;
26591
+ }
26592
+ export interface ProcessTaskApproveHisQueryRequest {
25090
26593
  /**
25091
- * edhr模板id
26594
+ * 审批流程记录创建人id
25092
26595
  *
25093
26596
  * @type string
25094
26597
  */
25095
- edhrTmplId?: string;
26598
+ approveHisCreateUserId?: string;
25096
26599
  /**
25097
- * edhr模板名称
26600
+ * 审批流程记录修改人id
25098
26601
  *
25099
26602
  * @type string
25100
26603
  */
25101
- edhrTmplName?: string;
26604
+ approveHisModifyUserId?: string;
25102
26605
  /**
25103
- * edhr模板版本
26606
+ * 处理人ID(查询我的待办时传当前登陆人id)
25104
26607
  *
25105
26608
  * @type string
25106
26609
  */
25107
- edhrTmplVersion?: string;
26610
+ assigneeId?: string;
25108
26611
  /**
25109
- * 表单类型
26612
+ * 业务编号(关联其他业务数据的编号)
25110
26613
  *
25111
26614
  * @type string
25112
26615
  */
25113
- formType?: string;
26616
+ businessCode?: string;
25114
26617
  /**
25115
- * 主键
26618
+ * 业务id(关联其他业务数据的id)
25116
26619
  *
25117
26620
  * @type string
25118
26621
  */
25119
- id?: string;
26622
+ businessId?: string;
25120
26623
  /**
25121
- * 物料编号
26624
+ * 变更编号
25122
26625
  *
25123
26626
  * @type string
25124
26627
  */
25125
- materialNo?: string;
26628
+ changeNo?: string;
25126
26629
  /**
25127
- * 物料形态(批次或SN)
26630
+ * 变更类型
25128
26631
  *
25129
26632
  * @type string
25130
26633
  */
25131
- materialStatus?: string;
26634
+ changeType?: string;
25132
26635
  /**
25133
- * 工单编码
26636
+ * 编码
25134
26637
  *
25135
26638
  * @type string
25136
26639
  */
25137
- mfgOrderCode?: string;
26640
+ code?: string;
25138
26641
  /**
25139
- * 工单ID
26642
+ * 描述
25140
26643
  *
25141
26644
  * @type string
25142
26645
  */
25143
- mfgOrderId?: string;
26646
+ description?: string;
25144
26647
  /**
26648
+ * edhr模板id
25145
26649
  *
26650
+ * @type string
26651
+ */
26652
+ edhrTmplId?: string;
26653
+ /**
26654
+ * 生效日期
25146
26655
  *
25147
26656
  * @type string
25148
26657
  */
25149
- modifyTime?: string;
26658
+ effectiveDate?: string;
25150
26659
  /**
26660
+ * 创建时间 - 结束
25151
26661
  *
26662
+ * @type string
26663
+ */
26664
+ endCreateTime?: string;
26665
+ /**
26666
+ * 待办:任务接收/已办:任务审核-结束时间
25152
26667
  *
25153
26668
  * @type string
25154
26669
  */
25155
- modifyUserId?: string;
26670
+ endTime?: string;
25156
26671
  /**
26672
+ * 批次/SN编号
25157
26673
  *
26674
+ * @type string
26675
+ */
26676
+ materialNo?: string;
26677
+ /**
26678
+ * 记录类型(NO或SN),为空则表示全部
25158
26679
  *
25159
26680
  * @type string
25160
26681
  */
25161
- modifyUserName?: string;
26682
+ materialStatus?: string;
25162
26683
  /**
25163
- * 节点编码
26684
+ * 工单编码
25164
26685
  *
25165
26686
  * @type string
25166
26687
  */
25167
- nodeKey?: string;
26688
+ mfgOrderCode?: string;
25168
26689
  /**
25169
- * 单据code
26690
+ * 工单id
25170
26691
  *
25171
26692
  * @type string
25172
26693
  */
25173
- ofCode?: string;
26694
+ mfgOrderId?: string;
25174
26695
  /**
25175
- * 表单创建时间
26696
+ * 名称
25176
26697
  *
25177
26698
  * @type string
25178
26699
  */
25179
- ofCreateTime?: string;
26700
+ name?: string;
25180
26701
  /**
25181
- * 单据创建人名称
26702
+ * 是否不显示edhr
26703
+ *
26704
+ * @type number
26705
+ */
26706
+ notEdhr?: number;
26707
+ /**
26708
+ * 记录本ID
25182
26709
  *
25183
26710
  * @type string
25184
26711
  */
25185
- ofCreateUserName?: string;
26712
+ notebookId?: string;
25186
26713
  /**
25187
- * 表单实例id
26714
+ * 在线表单code
25188
26715
  *
25189
26716
  * @type string
25190
26717
  */
25191
- ofInstanceId?: string;
26718
+ ofCode?: string;
25192
26719
  /**
25193
- * 表单更新时间
26720
+ * 表单创建人id
25194
26721
  *
25195
26722
  * @type string
25196
26723
  */
25197
- ofModifyTime?: string;
26724
+ ofCreateUserId?: string;
25198
26725
  /**
25199
- * 单据修改人名称
26726
+ * 表单更新人id
25200
26727
  *
25201
26728
  * @type string
25202
26729
  */
25203
- ofModifyUserName?: string;
26730
+ ofModifyUserId?: string;
25204
26731
  /**
25205
- * 表单模板id
26732
+ * 表单模板
25206
26733
  *
25207
26734
  * @type string
25208
26735
  */
@@ -25214,13 +26741,31 @@ export interface ProcessTaskDoneResponse {
25214
26741
  */
25215
26742
  ofTmplName?: string;
25216
26743
  /**
25217
- * 流程实例ID
26744
+ * 表单实例ID
25218
26745
  *
25219
26746
  * @type string
25220
26747
  */
25221
- processInstanceId?: string;
26748
+ onlineFormInstanceId?: string;
25222
26749
  /**
25223
- * 流程状态: 运行中:running 已结束:finished
26750
+ * 是否仅显示edhr
26751
+ *
26752
+ * @type number
26753
+ */
26754
+ onlyEdhr?: number;
26755
+ /**
26756
+ * 页码
26757
+ *
26758
+ * @type number
26759
+ */
26760
+ pageNo?: number;
26761
+ /**
26762
+ * 分页大小
26763
+ *
26764
+ * @type number
26765
+ */
26766
+ pageSize?: number;
26767
+ /**
26768
+ * 当前流程状态: 进行中:RUNNING 已结束:COMPLETED
25224
26769
  *
25225
26770
  * @type string
25226
26771
  */
@@ -25231,12 +26776,42 @@ export interface ProcessTaskDoneResponse {
25231
26776
  * @type string
25232
26777
  */
25233
26778
  productCode?: string;
26779
+ /**
26780
+ * 产品家族编码
26781
+ *
26782
+ * @type string
26783
+ */
26784
+ productFamilyCode?: string;
26785
+ /**
26786
+ * 产品家族id
26787
+ *
26788
+ * @type string
26789
+ */
26790
+ productFamilyId?: string;
26791
+ /**
26792
+ * 产品家族名称
26793
+ *
26794
+ * @type string
26795
+ */
26796
+ productFamilyName?: string;
25234
26797
  /**
25235
26798
  * 产品id
25236
26799
  *
25237
26800
  * @type string
25238
26801
  */
25239
26802
  productId?: string;
26803
+ /**
26804
+ * 产品基id
26805
+ *
26806
+ * @type string
26807
+ */
26808
+ productIdRbi?: string;
26809
+ /**
26810
+ * 产品版本
26811
+ *
26812
+ * @type string
26813
+ */
26814
+ productIdRi?: string;
25240
26815
  /**
25241
26816
  * 产品名称
25242
26817
  *
@@ -25244,65 +26819,1277 @@ export interface ProcessTaskDoneResponse {
25244
26819
  */
25245
26820
  productName?: string;
25246
26821
  /**
25247
- * 产品规格
26822
+ * 产品制程id
26823
+ *
26824
+ * @type string
26825
+ */
26826
+ productProcessId?: string;
26827
+ /**
26828
+ * 产品制程生产模式
26829
+ *
26830
+ * @type string
26831
+ */
26832
+ productProcessProductionType?: string;
26833
+ /**
26834
+ * 产品规格型号
25248
26835
  *
25249
26836
  * @type string
25250
26837
  */
25251
26838
  productSpec?: string;
25252
26839
  /**
25253
- * 产品版本
26840
+ * 工艺路线id
25254
26841
  *
25255
26842
  * @type string
25256
26843
  */
25257
- productVersion?: string;
26844
+ routingId?: string;
25258
26845
  /**
25259
- * 流水号
26846
+ * 表单流水号
25260
26847
  *
25261
26848
  * @type string
25262
26849
  */
25263
26850
  serialNo?: string;
25264
26851
  /**
25265
- * 发起人iD
26852
+ * 是否显示表单变更数据
26853
+ *
26854
+ * @type number
26855
+ */
26856
+ showChange?: number;
26857
+ /**
26858
+ * 显示表单流程数据
26859
+ *
26860
+ * @type boolean
26861
+ */
26862
+ showFormProcess?: boolean;
26863
+ /**
26864
+ * 排序字段
25266
26865
  *
25267
26866
  * @type string
25268
26867
  */
25269
- starterId?: string;
26868
+ sortField?: string;
25270
26869
  /**
25271
- * 发起人姓名
26870
+ * 排序方式:ASC/DESC, 不传默认 ASC
25272
26871
  *
25273
26872
  * @type string
25274
26873
  */
25275
- starterName?: string;
26874
+ sortType?: string;
25276
26875
  /**
25277
- * 任务结束时间
26876
+ * 创建时间 - 开始
25278
26877
  *
25279
26878
  * @type string
25280
26879
  */
25281
- taskEndTime?: string;
26880
+ startCreateTime?: string;
25282
26881
  /**
25283
- * 任务ID
26882
+ * 待办:任务接收/已办:任务审核-开始时间
25284
26883
  *
25285
26884
  * @type string
25286
26885
  */
25287
- taskId?: string;
26886
+ startTime?: string;
25288
26887
  /**
25289
- * 任务开始时间
26888
+ * 汇总人ID
25290
26889
  *
25291
26890
  * @type string
25292
26891
  */
25293
- taskStartTime?: string;
26892
+ starterId?: string;
25294
26893
  /**
25295
- * 任务类型:edhr任务:EDHR
26894
+ * 变更流程的状态
26895
+ *
26896
+ * @type string
26897
+ */
26898
+ status?: string;
26899
+ /**
26900
+ * 任务类型
25296
26901
  *
25297
26902
  * @type string
25298
26903
  */
25299
26904
  taskType?: string;
25300
26905
  /**
25301
- * 表单任务名称
26906
+ * 任务类型 集合
26907
+ *
26908
+ * @type string[]
26909
+ */
26910
+ taskTypeList?: string[];
26911
+ /**
26912
+ * 表单备注名
25302
26913
  *
25303
26914
  * @type string
25304
26915
  */
25305
26916
  title?: string;
26917
+ /**
26918
+ * 表单编号
26919
+ *
26920
+ * @type string
26921
+ */
26922
+ tmplCode?: string;
26923
+ /**
26924
+ * 表单模板
26925
+ *
26926
+ * @type string
26927
+ */
26928
+ tmplId?: string;
26929
+ /**
26930
+ * 表单名称
26931
+ *
26932
+ * @type string
26933
+ */
26934
+ tmplName?: string;
26935
+ /**
26936
+ * 审批流程记录类型
26937
+ *
26938
+ * @type string
26939
+ */
26940
+ type?: string;
26941
+ /**
26942
+ * 审批流程记录类型 集合
26943
+ *
26944
+ * @type string[]
26945
+ */
26946
+ typeList?: string[];
26947
+ /**
26948
+ * 版本
26949
+ *
26950
+ * @type string
26951
+ */
26952
+ version?: string;
26953
+ }
26954
+ export interface ProcessTaskDoneApproveHisResponse {
26955
+ /**
26956
+ * 审批流程记录创建时间
26957
+ *
26958
+ * @type string
26959
+ */
26960
+ approveHisCreateTime?: string;
26961
+ /**
26962
+ * 审批流程记录创建人
26963
+ *
26964
+ * @type string
26965
+ */
26966
+ approveHisCreateUserName?: string;
26967
+ /**
26968
+ * 审批流程记录修改时间
26969
+ *
26970
+ * @type string
26971
+ */
26972
+ approveHisModifyTime?: string;
26973
+ /**
26974
+ * 审批流程记录修改人
26975
+ *
26976
+ * @type string
26977
+ */
26978
+ approveHisModifyUserName?: string;
26979
+ /**
26980
+ * 处理人ID
26981
+ *
26982
+ * @type string
26983
+ */
26984
+ assigneeId?: string;
26985
+ /**
26986
+ * 处理人姓名
26987
+ *
26988
+ * @type string
26989
+ */
26990
+ assigneeName?: string;
26991
+ /**
26992
+ * 业务编号(关联其他业务数据的编号)
26993
+ *
26994
+ * @type string
26995
+ */
26996
+ businessCode?: string;
26997
+ /**
26998
+ * 业务id(关联其他业务数据的id)
26999
+ *
27000
+ * @type string
27001
+ */
27002
+ businessId?: string;
27003
+ /**
27004
+ * 表单来源
27005
+ *
27006
+ * @type string
27007
+ */
27008
+ businessType?: string;
27009
+ /**
27010
+ * 变更编号
27011
+ *
27012
+ * @type string
27013
+ */
27014
+ changeNo?: string;
27015
+ /**
27016
+ * 变更类型
27017
+ *
27018
+ * @type string
27019
+ */
27020
+ changeType?: string;
27021
+ /**
27022
+ * 编码
27023
+ *
27024
+ * @type string
27025
+ */
27026
+ code?: string;
27027
+ /**
27028
+ *
27029
+ *
27030
+ * @type string
27031
+ */
27032
+ createTime?: string;
27033
+ /**
27034
+ *
27035
+ *
27036
+ * @type string
27037
+ */
27038
+ createUserId?: string;
27039
+ /**
27040
+ *
27041
+ *
27042
+ * @type string
27043
+ */
27044
+ createUserName?: string;
27045
+ /**
27046
+ * 描述
27047
+ *
27048
+ * @type string
27049
+ */
27050
+ description?: string;
27051
+ /**
27052
+ * 当前表单实例关联之大纲id
27053
+ *
27054
+ * @type string
27055
+ */
27056
+ docOutlineId?: string;
27057
+ /**
27058
+ * edhr实例id
27059
+ *
27060
+ * @type string
27061
+ */
27062
+ edhrInstanceId?: string;
27063
+ /**
27064
+ * edhr模板id
27065
+ *
27066
+ * @type string
27067
+ */
27068
+ edhrTmplId?: string;
27069
+ /**
27070
+ * edhr模板名称
27071
+ *
27072
+ * @type string
27073
+ */
27074
+ edhrTmplName?: string;
27075
+ /**
27076
+ * edhr模板版本
27077
+ *
27078
+ * @type string
27079
+ */
27080
+ edhrTmplVersion?: string;
27081
+ /**
27082
+ * 生效日期
27083
+ *
27084
+ * @type string
27085
+ */
27086
+ effectiveDate?: string;
27087
+ /**
27088
+ * 表单类型
27089
+ *
27090
+ * @type string
27091
+ */
27092
+ formType?: string;
27093
+ /**
27094
+ * 主键
27095
+ *
27096
+ * @type string
27097
+ */
27098
+ id?: string;
27099
+ /**
27100
+ * 批次/SN编号
27101
+ *
27102
+ * @type string
27103
+ */
27104
+ materialNo?: string;
27105
+ /**
27106
+ * 物料形态(批次或SN)
27107
+ *
27108
+ * @type string
27109
+ */
27110
+ materialStatus?: string;
27111
+ /**
27112
+ * 工单编码
27113
+ *
27114
+ * @type string
27115
+ */
27116
+ mfgOrderCode?: string;
27117
+ /**
27118
+ * 工单id
27119
+ *
27120
+ * @type string
27121
+ */
27122
+ mfgOrderId?: string;
27123
+ /**
27124
+ *
27125
+ *
27126
+ * @type string
27127
+ */
27128
+ modifyTime?: string;
27129
+ /**
27130
+ *
27131
+ *
27132
+ * @type string
27133
+ */
27134
+ modifyUserId?: string;
27135
+ /**
27136
+ *
27137
+ *
27138
+ * @type string
27139
+ */
27140
+ modifyUserName?: string;
27141
+ /**
27142
+ * 名称
27143
+ *
27144
+ * @type string
27145
+ */
27146
+ name?: string;
27147
+ /**
27148
+ * 节点编码
27149
+ *
27150
+ * @type string
27151
+ */
27152
+ nodeKey?: string;
27153
+ /**
27154
+ * 记录本ID
27155
+ *
27156
+ * @type string
27157
+ */
27158
+ notebookId?: string;
27159
+ /**
27160
+ * 单据code
27161
+ *
27162
+ * @type string
27163
+ */
27164
+ ofCode?: string;
27165
+ /**
27166
+ * 表单创建时间
27167
+ *
27168
+ * @type string
27169
+ */
27170
+ ofCreateTime?: string;
27171
+ /**
27172
+ * 单据创建人名称
27173
+ *
27174
+ * @type string
27175
+ */
27176
+ ofCreateUserName?: string;
27177
+ /**
27178
+ * 表单实例id
27179
+ *
27180
+ * @type string
27181
+ */
27182
+ ofInstanceId?: string;
27183
+ /**
27184
+ * 表单更新时间
27185
+ *
27186
+ * @type string
27187
+ */
27188
+ ofModifyTime?: string;
27189
+ /**
27190
+ * 单据修改人名称
27191
+ *
27192
+ * @type string
27193
+ */
27194
+ ofModifyUserName?: string;
27195
+ /**
27196
+ * 表单模板id
27197
+ *
27198
+ * @type string
27199
+ */
27200
+ ofTmplId?: string;
27201
+ /**
27202
+ * 表单模板名称
27203
+ *
27204
+ * @type string
27205
+ */
27206
+ ofTmplName?: string;
27207
+ /**
27208
+ * 表单实例ID
27209
+ *
27210
+ * @type string
27211
+ */
27212
+ onlineFormInstanceId?: string;
27213
+ /**
27214
+ * 流程实例ID
27215
+ *
27216
+ * @type string
27217
+ */
27218
+ processInstanceId?: string;
27219
+ /**
27220
+ * 流程状态: 运行中:running 已结束:finished
27221
+ *
27222
+ * @type string
27223
+ */
27224
+ processInstanceStatus?: string;
27225
+ /**
27226
+ * 产品编码
27227
+ *
27228
+ * @type string
27229
+ */
27230
+ productCode?: string;
27231
+ /**
27232
+ * 产品家族编码
27233
+ *
27234
+ * @type string
27235
+ */
27236
+ productFamilyCode?: string;
27237
+ /**
27238
+ * 产品家族id
27239
+ *
27240
+ * @type string
27241
+ */
27242
+ productFamilyId?: string;
27243
+ /**
27244
+ * 产品家族名称
27245
+ *
27246
+ * @type string
27247
+ */
27248
+ productFamilyName?: string;
27249
+ /**
27250
+ * 产品id
27251
+ *
27252
+ * @type string
27253
+ */
27254
+ productId?: string;
27255
+ /**
27256
+ * 产品基id
27257
+ *
27258
+ * @type string
27259
+ */
27260
+ productIdRbi?: string;
27261
+ /**
27262
+ * 产品版本
27263
+ *
27264
+ * @type string
27265
+ */
27266
+ productIdRi?: string;
27267
+ /**
27268
+ * 产品名称
27269
+ *
27270
+ * @type string
27271
+ */
27272
+ productName?: string;
27273
+ /**
27274
+ * 产品制程id
27275
+ *
27276
+ * @type string
27277
+ */
27278
+ productProcessId?: string;
27279
+ /**
27280
+ * 产品制程生产模式
27281
+ *
27282
+ * @type string
27283
+ */
27284
+ productProcessProductionType?: string;
27285
+ /**
27286
+ * 产品规格型号
27287
+ *
27288
+ * @type string
27289
+ */
27290
+ productSpec?: string;
27291
+ /**
27292
+ * 产品版本
27293
+ *
27294
+ * @type string
27295
+ */
27296
+ productVersion?: string;
27297
+ /**
27298
+ * 工艺路线id
27299
+ *
27300
+ * @type string
27301
+ */
27302
+ routingId?: string;
27303
+ /**
27304
+ * 表单流水号
27305
+ *
27306
+ * @type string
27307
+ */
27308
+ serialNo?: string;
27309
+ /**
27310
+ * 发起人iD
27311
+ *
27312
+ * @type string
27313
+ */
27314
+ starterId?: string;
27315
+ /**
27316
+ * 发起人姓名
27317
+ *
27318
+ * @type string
27319
+ */
27320
+ starterName?: string;
27321
+ /**
27322
+ * 变更流程的状态
27323
+ *
27324
+ * @type string
27325
+ */
27326
+ status?: string;
27327
+ /**
27328
+ * 任务结束时间
27329
+ *
27330
+ * @type string
27331
+ */
27332
+ taskEndTime?: string;
27333
+ /**
27334
+ * 任务ID
27335
+ *
27336
+ * @type string
27337
+ */
27338
+ taskId?: string;
27339
+ /**
27340
+ * 任务开始时间
27341
+ *
27342
+ * @type string
27343
+ */
27344
+ taskStartTime?: string;
27345
+ /**
27346
+ * 任务类型:edhr任务:EDHR
27347
+ *
27348
+ * @type string
27349
+ */
27350
+ taskType?: string;
27351
+ /**
27352
+ * 表单备注名
27353
+ *
27354
+ * @type string
27355
+ */
27356
+ title?: string;
27357
+ /**
27358
+ * 表单编号
27359
+ *
27360
+ * @type string
27361
+ */
27362
+ tmplCode?: string;
27363
+ /**
27364
+ * 表单模板
27365
+ *
27366
+ * @type string
27367
+ */
27368
+ tmplId?: string;
27369
+ /**
27370
+ * 表单名称
27371
+ *
27372
+ * @type string
27373
+ */
27374
+ tmplName?: string;
27375
+ /**
27376
+ * 审批流程记录类型
27377
+ *
27378
+ * @type string
27379
+ */
27380
+ type?: string;
27381
+ /**
27382
+ * 版本
27383
+ *
27384
+ * @type string
27385
+ */
27386
+ version?: string;
27387
+ }
27388
+ export interface ProcessTaskDoneResponse {
27389
+ /**
27390
+ * 处理人ID
27391
+ *
27392
+ * @type string
27393
+ */
27394
+ assigneeId?: string;
27395
+ /**
27396
+ * 处理人姓名
27397
+ *
27398
+ * @type string
27399
+ */
27400
+ assigneeName?: string;
27401
+ /**
27402
+ * 业务编号(关联其他业务数据的编号)
27403
+ *
27404
+ * @type string
27405
+ */
27406
+ businessCode?: string;
27407
+ /**
27408
+ * 业务id(关联其他业务数据的id)
27409
+ *
27410
+ * @type string
27411
+ */
27412
+ businessId?: string;
27413
+ /**
27414
+ * 表单来源
27415
+ *
27416
+ * @type string
27417
+ */
27418
+ businessType?: string;
27419
+ /**
27420
+ *
27421
+ *
27422
+ * @type string
27423
+ */
27424
+ createTime?: string;
27425
+ /**
27426
+ *
27427
+ *
27428
+ * @type string
27429
+ */
27430
+ createUserId?: string;
27431
+ /**
27432
+ *
27433
+ *
27434
+ * @type string
27435
+ */
27436
+ createUserName?: string;
27437
+ /**
27438
+ * 当前表单实例关联之大纲id
27439
+ *
27440
+ * @type string
27441
+ */
27442
+ docOutlineId?: string;
27443
+ /**
27444
+ * edhr实例id
27445
+ *
27446
+ * @type string
27447
+ */
27448
+ edhrInstanceId?: string;
27449
+ /**
27450
+ * edhr模板id
27451
+ *
27452
+ * @type string
27453
+ */
27454
+ edhrTmplId?: string;
27455
+ /**
27456
+ * edhr模板名称
27457
+ *
27458
+ * @type string
27459
+ */
27460
+ edhrTmplName?: string;
27461
+ /**
27462
+ * edhr模板版本
27463
+ *
27464
+ * @type string
27465
+ */
27466
+ edhrTmplVersion?: string;
27467
+ /**
27468
+ * 表单类型
27469
+ *
27470
+ * @type string
27471
+ */
27472
+ formType?: string;
27473
+ /**
27474
+ * 主键
27475
+ *
27476
+ * @type string
27477
+ */
27478
+ id?: string;
27479
+ /**
27480
+ * 物料编号
27481
+ *
27482
+ * @type string
27483
+ */
27484
+ materialNo?: string;
27485
+ /**
27486
+ * 物料形态(批次或SN)
27487
+ *
27488
+ * @type string
27489
+ */
27490
+ materialStatus?: string;
27491
+ /**
27492
+ * 工单编码
27493
+ *
27494
+ * @type string
27495
+ */
27496
+ mfgOrderCode?: string;
27497
+ /**
27498
+ * 工单ID
27499
+ *
27500
+ * @type string
27501
+ */
27502
+ mfgOrderId?: string;
27503
+ /**
27504
+ *
27505
+ *
27506
+ * @type string
27507
+ */
27508
+ modifyTime?: string;
27509
+ /**
27510
+ *
27511
+ *
27512
+ * @type string
27513
+ */
27514
+ modifyUserId?: string;
27515
+ /**
27516
+ *
27517
+ *
27518
+ * @type string
27519
+ */
27520
+ modifyUserName?: string;
27521
+ /**
27522
+ * 节点编码
27523
+ *
27524
+ * @type string
27525
+ */
27526
+ nodeKey?: string;
27527
+ /**
27528
+ * 单据code
27529
+ *
27530
+ * @type string
27531
+ */
27532
+ ofCode?: string;
27533
+ /**
27534
+ * 表单创建时间
27535
+ *
27536
+ * @type string
27537
+ */
27538
+ ofCreateTime?: string;
27539
+ /**
27540
+ * 单据创建人名称
27541
+ *
27542
+ * @type string
27543
+ */
27544
+ ofCreateUserName?: string;
27545
+ /**
27546
+ * 表单实例id
27547
+ *
27548
+ * @type string
27549
+ */
27550
+ ofInstanceId?: string;
27551
+ /**
27552
+ * 表单更新时间
27553
+ *
27554
+ * @type string
27555
+ */
27556
+ ofModifyTime?: string;
27557
+ /**
27558
+ * 单据修改人名称
27559
+ *
27560
+ * @type string
27561
+ */
27562
+ ofModifyUserName?: string;
27563
+ /**
27564
+ * 表单模板id
27565
+ *
27566
+ * @type string
27567
+ */
27568
+ ofTmplId?: string;
27569
+ /**
27570
+ * 表单模板名称
27571
+ *
27572
+ * @type string
27573
+ */
27574
+ ofTmplName?: string;
27575
+ /**
27576
+ * 流程实例ID
27577
+ *
27578
+ * @type string
27579
+ */
27580
+ processInstanceId?: string;
27581
+ /**
27582
+ * 流程状态: 运行中:running 已结束:finished
27583
+ *
27584
+ * @type string
27585
+ */
27586
+ processInstanceStatus?: string;
27587
+ /**
27588
+ * 产品编码
27589
+ *
27590
+ * @type string
27591
+ */
27592
+ productCode?: string;
27593
+ /**
27594
+ * 产品id
27595
+ *
27596
+ * @type string
27597
+ */
27598
+ productId?: string;
27599
+ /**
27600
+ * 产品名称
27601
+ *
27602
+ * @type string
27603
+ */
27604
+ productName?: string;
27605
+ /**
27606
+ * 产品规格
27607
+ *
27608
+ * @type string
27609
+ */
27610
+ productSpec?: string;
27611
+ /**
27612
+ * 产品版本
27613
+ *
27614
+ * @type string
27615
+ */
27616
+ productVersion?: string;
27617
+ /**
27618
+ * 流水号
27619
+ *
27620
+ * @type string
27621
+ */
27622
+ serialNo?: string;
27623
+ /**
27624
+ * 发起人iD
27625
+ *
27626
+ * @type string
27627
+ */
27628
+ starterId?: string;
27629
+ /**
27630
+ * 发起人姓名
27631
+ *
27632
+ * @type string
27633
+ */
27634
+ starterName?: string;
27635
+ /**
27636
+ * 任务结束时间
27637
+ *
27638
+ * @type string
27639
+ */
27640
+ taskEndTime?: string;
27641
+ /**
27642
+ * 任务ID
27643
+ *
27644
+ * @type string
27645
+ */
27646
+ taskId?: string;
27647
+ /**
27648
+ * 任务开始时间
27649
+ *
27650
+ * @type string
27651
+ */
27652
+ taskStartTime?: string;
27653
+ /**
27654
+ * 任务类型:edhr任务:EDHR
27655
+ *
27656
+ * @type string
27657
+ */
27658
+ taskType?: string;
27659
+ /**
27660
+ * 表单任务名称
27661
+ *
27662
+ * @type string
27663
+ */
27664
+ title?: string;
27665
+ }
27666
+ export interface ProcessTaskTodoApproveHisResponse {
27667
+ /**
27668
+ * 审批流程记录创建时间
27669
+ *
27670
+ * @type string
27671
+ */
27672
+ approveHisCreateTime?: string;
27673
+ /**
27674
+ * 审批流程记录创建人
27675
+ *
27676
+ * @type string
27677
+ */
27678
+ approveHisCreateUserName?: string;
27679
+ /**
27680
+ * 审批流程记录修改时间
27681
+ *
27682
+ * @type string
27683
+ */
27684
+ approveHisModifyTime?: string;
27685
+ /**
27686
+ * 审批流程记录修改人
27687
+ *
27688
+ * @type string
27689
+ */
27690
+ approveHisModifyUserName?: string;
27691
+ /**
27692
+ * 处理人ID
27693
+ *
27694
+ * @type string
27695
+ */
27696
+ assigneeId?: string;
27697
+ /**
27698
+ * 处理人姓名
27699
+ *
27700
+ * @type string
27701
+ */
27702
+ assigneeName?: string;
27703
+ /**
27704
+ * 业务编号(关联其他业务数据的编号)
27705
+ *
27706
+ * @type string
27707
+ */
27708
+ businessCode?: string;
27709
+ /**
27710
+ * 业务id(关联其他业务数据的id)
27711
+ *
27712
+ * @type string
27713
+ */
27714
+ businessId?: string;
27715
+ /**
27716
+ * 表单来源
27717
+ *
27718
+ * @type string
27719
+ */
27720
+ businessType?: string;
27721
+ /**
27722
+ * 变更编号
27723
+ *
27724
+ * @type string
27725
+ */
27726
+ changeNo?: string;
27727
+ /**
27728
+ * 变更类型
27729
+ *
27730
+ * @type string
27731
+ */
27732
+ changeType?: string;
27733
+ /**
27734
+ * 编码
27735
+ *
27736
+ * @type string
27737
+ */
27738
+ code?: string;
27739
+ /**
27740
+ *
27741
+ *
27742
+ * @type string
27743
+ */
27744
+ createTime?: string;
27745
+ /**
27746
+ *
27747
+ *
27748
+ * @type string
27749
+ */
27750
+ createUserId?: string;
27751
+ /**
27752
+ *
27753
+ *
27754
+ * @type string
27755
+ */
27756
+ createUserName?: string;
27757
+ /**
27758
+ * 描述
27759
+ *
27760
+ * @type string
27761
+ */
27762
+ description?: string;
27763
+ /**
27764
+ * 当前表单实例关联之大纲id
27765
+ *
27766
+ * @type string
27767
+ */
27768
+ docOutlineId?: string;
27769
+ /**
27770
+ * edhr实例id
27771
+ *
27772
+ * @type string
27773
+ */
27774
+ edhrInstanceId?: string;
27775
+ /**
27776
+ * edhr模板id
27777
+ *
27778
+ * @type string
27779
+ */
27780
+ edhrTmplId?: string;
27781
+ /**
27782
+ * edhr模板名称
27783
+ *
27784
+ * @type string
27785
+ */
27786
+ edhrTmplName?: string;
27787
+ /**
27788
+ * edhr模板版本
27789
+ *
27790
+ * @type string
27791
+ */
27792
+ edhrTmplVersion?: string;
27793
+ /**
27794
+ * 生效日期
27795
+ *
27796
+ * @type string
27797
+ */
27798
+ effectiveDate?: string;
27799
+ /**
27800
+ * 表单类型
27801
+ *
27802
+ * @type string
27803
+ */
27804
+ formType?: string;
27805
+ /**
27806
+ * 主键
27807
+ *
27808
+ * @type string
27809
+ */
27810
+ id?: string;
27811
+ /**
27812
+ * 批次/SN编号
27813
+ *
27814
+ * @type string
27815
+ */
27816
+ materialNo?: string;
27817
+ /**
27818
+ * 物料形态(批次或SN)
27819
+ *
27820
+ * @type string
27821
+ */
27822
+ materialStatus?: string;
27823
+ /**
27824
+ * 工单编码
27825
+ *
27826
+ * @type string
27827
+ */
27828
+ mfgOrderCode?: string;
27829
+ /**
27830
+ * 工单id
27831
+ *
27832
+ * @type string
27833
+ */
27834
+ mfgOrderId?: string;
27835
+ /**
27836
+ *
27837
+ *
27838
+ * @type string
27839
+ */
27840
+ modifyTime?: string;
27841
+ /**
27842
+ *
27843
+ *
27844
+ * @type string
27845
+ */
27846
+ modifyUserId?: string;
27847
+ /**
27848
+ *
27849
+ *
27850
+ * @type string
27851
+ */
27852
+ modifyUserName?: string;
27853
+ /**
27854
+ * 名称
27855
+ *
27856
+ * @type string
27857
+ */
27858
+ name?: string;
27859
+ /**
27860
+ * 节点编码
27861
+ *
27862
+ * @type string
27863
+ */
27864
+ nodeKey?: string;
27865
+ /**
27866
+ * 记录本ID
27867
+ *
27868
+ * @type string
27869
+ */
27870
+ notebookId?: string;
27871
+ /**
27872
+ * 单据code
27873
+ *
27874
+ * @type string
27875
+ */
27876
+ ofCode?: string;
27877
+ /**
27878
+ * 表单创建时间
27879
+ *
27880
+ * @type string
27881
+ */
27882
+ ofCreateTime?: string;
27883
+ /**
27884
+ * 单据创建人名称
27885
+ *
27886
+ * @type string
27887
+ */
27888
+ ofCreateUserName?: string;
27889
+ /**
27890
+ * 表单实例id
27891
+ *
27892
+ * @type string
27893
+ */
27894
+ ofInstanceId?: string;
27895
+ /**
27896
+ * 表单更新时间
27897
+ *
27898
+ * @type string
27899
+ */
27900
+ ofModifyTime?: string;
27901
+ /**
27902
+ * 单据修改人名称
27903
+ *
27904
+ * @type string
27905
+ */
27906
+ ofModifyUserName?: string;
27907
+ /**
27908
+ * 表单模板id
27909
+ *
27910
+ * @type string
27911
+ */
27912
+ ofTmplId?: string;
27913
+ /**
27914
+ * 表单模板名称
27915
+ *
27916
+ * @type string
27917
+ */
27918
+ ofTmplName?: string;
27919
+ /**
27920
+ * 表单实例ID
27921
+ *
27922
+ * @type string
27923
+ */
27924
+ onlineFormInstanceId?: string;
27925
+ /**
27926
+ * 流程实例ID
27927
+ *
27928
+ * @type string
27929
+ */
27930
+ processInstanceId?: string;
27931
+ /**
27932
+ * 流程状态: 运行中:running 已结束:finished
27933
+ *
27934
+ * @type string
27935
+ */
27936
+ processInstanceStatus?: string;
27937
+ /**
27938
+ * 产品编码
27939
+ *
27940
+ * @type string
27941
+ */
27942
+ productCode?: string;
27943
+ /**
27944
+ * 产品家族编码
27945
+ *
27946
+ * @type string
27947
+ */
27948
+ productFamilyCode?: string;
27949
+ /**
27950
+ * 产品家族id
27951
+ *
27952
+ * @type string
27953
+ */
27954
+ productFamilyId?: string;
27955
+ /**
27956
+ * 产品家族名称
27957
+ *
27958
+ * @type string
27959
+ */
27960
+ productFamilyName?: string;
27961
+ /**
27962
+ * 产品id
27963
+ *
27964
+ * @type string
27965
+ */
27966
+ productId?: string;
27967
+ /**
27968
+ * 产品基id
27969
+ *
27970
+ * @type string
27971
+ */
27972
+ productIdRbi?: string;
27973
+ /**
27974
+ * 产品版本
27975
+ *
27976
+ * @type string
27977
+ */
27978
+ productIdRi?: string;
27979
+ /**
27980
+ * 产品名称
27981
+ *
27982
+ * @type string
27983
+ */
27984
+ productName?: string;
27985
+ /**
27986
+ * 产品制程id
27987
+ *
27988
+ * @type string
27989
+ */
27990
+ productProcessId?: string;
27991
+ /**
27992
+ * 产品制程生产模式
27993
+ *
27994
+ * @type string
27995
+ */
27996
+ productProcessProductionType?: string;
27997
+ /**
27998
+ * 产品规格型号
27999
+ *
28000
+ * @type string
28001
+ */
28002
+ productSpec?: string;
28003
+ /**
28004
+ * 产品版本
28005
+ *
28006
+ * @type string
28007
+ */
28008
+ productVersion?: string;
28009
+ /**
28010
+ * 工艺路线id
28011
+ *
28012
+ * @type string
28013
+ */
28014
+ routingId?: string;
28015
+ /**
28016
+ * 表单流水号
28017
+ *
28018
+ * @type string
28019
+ */
28020
+ serialNo?: string;
28021
+ /**
28022
+ * 发起人iD
28023
+ *
28024
+ * @type string
28025
+ */
28026
+ starterId?: string;
28027
+ /**
28028
+ * 发起人姓名
28029
+ *
28030
+ * @type string
28031
+ */
28032
+ starterName?: string;
28033
+ /**
28034
+ * 变更流程的状态
28035
+ *
28036
+ * @type string
28037
+ */
28038
+ status?: string;
28039
+ /**
28040
+ * 任务ID
28041
+ *
28042
+ * @type string
28043
+ */
28044
+ taskId?: string;
28045
+ /**
28046
+ * 任务开始时间
28047
+ *
28048
+ * @type string
28049
+ */
28050
+ taskStartTime?: string;
28051
+ /**
28052
+ * 任务类型:edhr任务:EDHR
28053
+ *
28054
+ * @type string
28055
+ */
28056
+ taskType?: string;
28057
+ /**
28058
+ * 表单备注名
28059
+ *
28060
+ * @type string
28061
+ */
28062
+ title?: string;
28063
+ /**
28064
+ * 表单编号
28065
+ *
28066
+ * @type string
28067
+ */
28068
+ tmplCode?: string;
28069
+ /**
28070
+ * 表单模板
28071
+ *
28072
+ * @type string
28073
+ */
28074
+ tmplId?: string;
28075
+ /**
28076
+ * 表单名称
28077
+ *
28078
+ * @type string
28079
+ */
28080
+ tmplName?: string;
28081
+ /**
28082
+ * 审批流程记录类型
28083
+ *
28084
+ * @type string
28085
+ */
28086
+ type?: string;
28087
+ /**
28088
+ * 版本
28089
+ *
28090
+ * @type string
28091
+ */
28092
+ version?: string;
25306
28093
  }
25307
28094
  export interface ProcessTaskTodoResponse {
25308
28095
  /**
@@ -25708,6 +28495,130 @@ export interface ProcessVersionResponse {
25708
28495
  */
25709
28496
  xml?: string;
25710
28497
  }
28498
+ export interface ProductReleaseCategoryRequest {
28499
+ /**
28500
+ * 全路径
28501
+ *
28502
+ * @type string
28503
+ */
28504
+ fullPath?: string;
28505
+ /**
28506
+ * 层级
28507
+ *
28508
+ * @type number
28509
+ */
28510
+ level?: number;
28511
+ /**
28512
+ * 名称
28513
+ *
28514
+ * @type string
28515
+ */
28516
+ name?: string;
28517
+ /**
28518
+ * 父节点ID
28519
+ *
28520
+ * @type string
28521
+ */
28522
+ parentId?: string;
28523
+ /**
28524
+ * 排序号
28525
+ *
28526
+ * @type number
28527
+ */
28528
+ sortNum?: number;
28529
+ }
28530
+ export interface ProductReleaseCategoryResponse {
28531
+ /**
28532
+ * 创建人部门id
28533
+ *
28534
+ * @type string
28535
+ */
28536
+ createOrgId?: string;
28537
+ /**
28538
+ *
28539
+ *
28540
+ * @type string
28541
+ */
28542
+ createTime?: string;
28543
+ /**
28544
+ *
28545
+ *
28546
+ * @type string
28547
+ */
28548
+ createUserId?: string;
28549
+ /**
28550
+ *
28551
+ *
28552
+ * @type string
28553
+ */
28554
+ createUserName?: string;
28555
+ /**
28556
+ * 全路径
28557
+ *
28558
+ * @type string
28559
+ */
28560
+ fullPath?: string;
28561
+ /**
28562
+ * 主键
28563
+ *
28564
+ * @type string
28565
+ */
28566
+ id?: string;
28567
+ /**
28568
+ * 层级
28569
+ *
28570
+ * @type number
28571
+ */
28572
+ level?: number;
28573
+ /**
28574
+ * 修改人部门id
28575
+ *
28576
+ * @type string
28577
+ */
28578
+ modifyOrgId?: string;
28579
+ /**
28580
+ *
28581
+ *
28582
+ * @type string
28583
+ */
28584
+ modifyTime?: string;
28585
+ /**
28586
+ *
28587
+ *
28588
+ * @type string
28589
+ */
28590
+ modifyUserId?: string;
28591
+ /**
28592
+ *
28593
+ *
28594
+ * @type string
28595
+ */
28596
+ modifyUserName?: string;
28597
+ /**
28598
+ * 名称
28599
+ *
28600
+ * @type string
28601
+ */
28602
+ name?: string;
28603
+ /**
28604
+ * 父节点ID
28605
+ *
28606
+ * @type string
28607
+ */
28608
+ parentId?: string;
28609
+ /**
28610
+ * 排序号
28611
+ *
28612
+ * @type number
28613
+ */
28614
+ sortNum?: number;
28615
+ /**
28616
+ * 租户id
28617
+ *
28618
+ * @type string
28619
+ */
28620
+ tenantId?: string;
28621
+ }
25711
28622
  export interface ProductReleaseFormInstanctDTO {
25712
28623
  /**
25713
28624
  *
@@ -25901,12 +28812,24 @@ export interface ProductReleaseFormInstanctDTO {
25901
28812
  * @type string
25902
28813
  */
25903
28814
  ext9?: string;
28815
+ /**
28816
+ *
28817
+ *
28818
+ * @type string
28819
+ */
28820
+ fieldHash?: string;
25904
28821
  /**
25905
28822
  *
25906
28823
  *
25907
28824
  * @type string
25908
28825
  */
25909
28826
  formType?: string;
28827
+ /**
28828
+ *
28829
+ *
28830
+ * @type string
28831
+ */
28832
+ hash?: string;
25910
28833
  /**
25911
28834
  *
25912
28835
  *
@@ -25919,6 +28842,12 @@ export interface ProductReleaseFormInstanctDTO {
25919
28842
  * @type string
25920
28843
  */
25921
28844
  id?: string;
28845
+ /**
28846
+ *
28847
+ *
28848
+ * @type string
28849
+ */
28850
+ instanceRelationBusinessId?: string;
25922
28851
  /**
25923
28852
  *
25924
28853
  *
@@ -25991,6 +28920,12 @@ export interface ProductReleaseFormInstanctDTO {
25991
28920
  * @type number
25992
28921
  */
25993
28922
  ofRequired?: number;
28923
+ /**
28924
+ *
28925
+ *
28926
+ * @type string
28927
+ */
28928
+ officeType?: string;
25994
28929
  /**
25995
28930
  *
25996
28931
  *
@@ -26057,6 +28992,12 @@ export interface ProductReleaseFormInstanctDTO {
26057
28992
  * @type string[]
26058
28993
  */
26059
28994
  relatedMaterialNos?: string[];
28995
+ /**
28996
+ *
28997
+ *
28998
+ * @type string
28999
+ */
29000
+ relationId?: string;
26060
29001
  /**
26061
29002
  *
26062
29003
  *
@@ -26135,6 +29076,12 @@ export interface ProductReleaseFormInstanctDTO {
26135
29076
  * @type string
26136
29077
  */
26137
29078
  tmplVersion?: string;
29079
+ /**
29080
+ *
29081
+ *
29082
+ * @type string
29083
+ */
29084
+ txnInstId?: string;
26138
29085
  /**
26139
29086
  *
26140
29087
  *
@@ -26161,6 +29108,12 @@ export interface ProductReleaseFormResponse {
26161
29108
  * @type OnlineFormInstanceResponse
26162
29109
  */
26163
29110
  instance?: OnlineFormInstanceResponse;
29111
+ /**
29112
+ * 表单实例
29113
+ *
29114
+ * @type OnlineFormInstanceResponse[]
29115
+ */
29116
+ instanceList?: OnlineFormInstanceResponse[];
26164
29117
  /**
26165
29118
  * 表单模板
26166
29119
  *
@@ -26605,12 +29558,24 @@ export interface QueryRefChainDataRequest {
26605
29558
  * @type string
26606
29559
  */
26607
29560
  dataIds?: string;
29561
+ /**
29562
+ * 条件表达式
29563
+ *
29564
+ * @type string
29565
+ */
29566
+ exp?: string;
26608
29567
  /**
26609
29568
  * 引用字段 key
26610
29569
  *
26611
29570
  * @type string
26612
29571
  */
26613
29572
  fieldKey?: string;
29573
+ /**
29574
+ * rdo 查询关键字
29575
+ *
29576
+ * @type string
29577
+ */
29578
+ keyword?: string;
26614
29579
  /**
26615
29580
  * 模型 key
26616
29581
  *
@@ -26629,6 +29594,12 @@ export interface QueryRefChainDataRequest {
26629
29594
  * @type number
26630
29595
  */
26631
29596
  pageSize?: number;
29597
+ /**
29598
+ * 查询条件
29599
+ *
29600
+ * @type IObject
29601
+ */
29602
+ query?: IObject;
26632
29603
  /**
26633
29604
  * 当前模型数据,当dataIds为空时,该值必传
26634
29605
  *
@@ -28054,6 +31025,56 @@ export interface ReportSingleJoin {
28054
31025
  */
28055
31026
  type?: string;
28056
31027
  }
31028
+ export interface Resource {
31029
+ /**
31030
+ *
31031
+ *
31032
+ * @type string
31033
+ */
31034
+ description?: string;
31035
+ /**
31036
+ *
31037
+ *
31038
+ * @type file
31039
+ */
31040
+ file?: file;
31041
+ /**
31042
+ *
31043
+ *
31044
+ * @type string
31045
+ */
31046
+ filename?: string;
31047
+ /**
31048
+ *
31049
+ *
31050
+ * @type InputStream
31051
+ */
31052
+ inputStream?: InputStream;
31053
+ /**
31054
+ *
31055
+ *
31056
+ * @type boolean
31057
+ */
31058
+ open?: boolean;
31059
+ /**
31060
+ *
31061
+ *
31062
+ * @type boolean
31063
+ */
31064
+ readable?: boolean;
31065
+ /**
31066
+ *
31067
+ *
31068
+ * @type string
31069
+ */
31070
+ uri?: string;
31071
+ /**
31072
+ *
31073
+ *
31074
+ * @type string
31075
+ */
31076
+ url?: string;
31077
+ }
28057
31078
  export interface ResponseEntity {
28058
31079
  /**
28059
31080
  * 执行结果状态码
@@ -28364,7 +31385,7 @@ export interface SandboxConfigResponse {
28364
31385
  */
28365
31386
  pdaRoutePath?: string;
28366
31387
  /**
28367
- * 沙箱状态(INIT:开始创建,CREATE_FINISHED:创建完成,CREATE_FAILED:创建失败)
31388
+ * 沙箱状态(INIT:开始创建,CREATE_FINISHED:创建完成,CREATE_FAILED:创建失败,REMOVING:移除中)
28368
31389
  *
28369
31390
  * @type string
28370
31391
  */
@@ -29075,6 +32096,12 @@ export interface SelectItem {
29075
32096
  * @type boolean
29076
32097
  */
29077
32098
  includeNull?: boolean;
32099
+ /**
32100
+ * 映射类型(公式,函数等实际映射的类型)
32101
+ *
32102
+ * @type string
32103
+ */
32104
+ mappingType?: string;
29078
32105
  /**
29079
32106
  * 数据类型
29080
32107
  *
@@ -31739,6 +34766,12 @@ export interface UserGroupRelationRequest {
31739
34766
  * @type number
31740
34767
  */
31741
34768
  fieldPermissionEnabled?: number;
34769
+ /**
34770
+ * 数据权限关系,OR:或, AND:且
34771
+ *
34772
+ * @type string
34773
+ */
34774
+ operator?: string;
31742
34775
  /**
31743
34776
  * 关系id
31744
34777
  *
@@ -31843,6 +34876,12 @@ export interface UserGroupRelationResponse {
31843
34876
  * @type string
31844
34877
  */
31845
34878
  modifyUserName?: string;
34879
+ /**
34880
+ * 数据权限关系,OR:或, AND:且
34881
+ *
34882
+ * @type string
34883
+ */
34884
+ operator?: string;
31846
34885
  /**
31847
34886
  * 关系id
31848
34887
  *
@@ -32897,6 +35936,12 @@ export interface UserTenantDTO {
32897
35936
  * @type string
32898
35937
  */
32899
35938
  id?: string;
35939
+ /**
35940
+ * 是否最后登录租户,0:否 1:是
35941
+ *
35942
+ * @type number
35943
+ */
35944
+ latestLogin?: number;
32900
35945
  /**
32901
35946
  * 直属上级id
32902
35947
  *
@@ -33818,6 +36863,44 @@ export interface XmlSettingTableColum {
33818
36863
  */
33819
36864
  type?: string;
33820
36865
  }
36866
+ export interface modelDataAssociationRequest {
36867
+ /**
36868
+ * fieldKey
36869
+ *
36870
+ * @type string
36871
+ */
36872
+ fieldKey?: string;
36873
+ /**
36874
+ * fieldType
36875
+ *
36876
+ * @type string
36877
+ */
36878
+ fieldType?: string;
36879
+ /**
36880
+ * 数据id
36881
+ *
36882
+ * @type string
36883
+ */
36884
+ id?: string;
36885
+ /**
36886
+ * modelKey
36887
+ *
36888
+ * @type string
36889
+ */
36890
+ modelKey?: string;
36891
+ /**
36892
+ * 页码
36893
+ *
36894
+ * @type number
36895
+ */
36896
+ pageNo?: number;
36897
+ /**
36898
+ * 分页大小
36899
+ *
36900
+ * @type number
36901
+ */
36902
+ pageSize?: number;
36903
+ }
33821
36904
  export interface 发送消息DTO {
33822
36905
  /**
33823
36906
  * 邮件内容