@gct-paas/api 6.0.0-dev.2 → 6.0.0-dev.4

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 (28) hide show
  1. package/dist/index.esm.min.js +1 -1
  2. package/es/apaas/service/api-config.mjs +99 -123
  3. package/es/apaas/service/apis/ai.service.d.ts +129 -0
  4. package/es/apaas/service/apis/alex-test.service.d.ts +16 -0
  5. package/es/apaas/service/apis/api.service.d.ts +31 -4
  6. package/es/apaas/service/apis/app-global-settings.service.d.ts +4 -0
  7. package/es/apaas/service/apis/app-granted-user.service.d.ts +21 -0
  8. package/es/apaas/service/apis/app-org.service.d.ts +4 -0
  9. package/es/apaas/service/apis/category.service.d.ts +0 -8
  10. package/es/apaas/service/apis/dhr.service.d.ts +4 -0
  11. package/es/apaas/service/apis/edhr-instance.service.d.ts +16 -0
  12. package/es/apaas/service/apis/field-meta.service.d.ts +8 -0
  13. package/es/apaas/service/apis/online-form-instance.service.d.ts +8 -45
  14. package/es/apaas/service/apis/online-form.service.d.ts +18 -0
  15. package/es/apaas/service/apis/page-designer-log.service.d.ts +1 -1
  16. package/es/apaas/service/entities.d.ts +1292 -274
  17. package/es/apaas/service/index.d.ts +4 -4
  18. package/es/platform/service/api-config.mjs +90 -4
  19. package/es/platform/service/apis/api.service.d.ts +98 -1
  20. package/es/platform/service/apis/app.service.d.ts +26 -4
  21. package/es/platform/service/apis/license.service.d.ts +10 -1
  22. package/es/platform/service/apis/third-party-app.service.d.ts +73 -0
  23. package/es/platform/service/entities.d.ts +361 -1
  24. package/es/platform/service/index.d.ts +2 -0
  25. package/package.json +5 -5
  26. package/es/apaas/service/apis/med-pro.service.d.ts +0 -76
  27. package/es/apaas/service/apis/medPro.service.d.ts +0 -184
  28. package/es/apaas/service/apis/ss.service.d.ts +0 -42
@@ -1,3 +1,469 @@
1
+ export interface AI回调请求 {
2
+ /**
3
+ * AI任务ID
4
+ *
5
+ * @type string
6
+ */
7
+ aiTaskId?: string;
8
+ /**
9
+ * 失败原因
10
+ *
11
+ * @type string
12
+ */
13
+ failReason?: string;
14
+ /**
15
+ * 表单模板ID
16
+ *
17
+ * @type string
18
+ */
19
+ formTmplId?: string;
20
+ /**
21
+ * 解析结果
22
+ *
23
+ * @type string
24
+ */
25
+ result?: string;
26
+ /**
27
+ * 转换状态
28
+ *
29
+ * @type string
30
+ */
31
+ status?: string;
32
+ /**
33
+ * 任务ID
34
+ *
35
+ * @type string
36
+ */
37
+ taskId?: string;
38
+ }
39
+ export interface AI表单解压任务响应 {
40
+ /**
41
+ * 解压完成时间
42
+ *
43
+ * @type string
44
+ */
45
+ completeTime?: string;
46
+ /**
47
+ * 解压状态
48
+ *
49
+ * @type string
50
+ */
51
+ extractStatus?: string;
52
+ /**
53
+ * 解压状态描述
54
+ *
55
+ * @type string
56
+ */
57
+ extractStatusDesc?: string;
58
+ /**
59
+ * 失败数量
60
+ *
61
+ * @type number
62
+ */
63
+ failCount?: number;
64
+ /**
65
+ * 失败原因
66
+ *
67
+ * @type string
68
+ */
69
+ failReason?: string;
70
+ /**
71
+ * 文件URL
72
+ *
73
+ * @type string
74
+ */
75
+ fileUrl?: string;
76
+ /**
77
+ * 任务ID
78
+ *
79
+ * @type string
80
+ */
81
+ id?: string;
82
+ /**
83
+ * 源文件名
84
+ *
85
+ * @type string
86
+ */
87
+ sourceFileName?: string;
88
+ /**
89
+ * 成功解压数量
90
+ *
91
+ * @type number
92
+ */
93
+ successCount?: number;
94
+ /**
95
+ * 解压文件总数
96
+ *
97
+ * @type number
98
+ */
99
+ totalCount?: number;
100
+ /**
101
+ * 上传时间
102
+ *
103
+ * @type string
104
+ */
105
+ uploadTime?: string;
106
+ /**
107
+ * 上传人姓名
108
+ *
109
+ * @type string
110
+ */
111
+ uploaderName?: string;
112
+ }
113
+ export interface AI表单解压任务查询请求 {
114
+ /**
115
+ * 解压状态
116
+ *
117
+ * @type string
118
+ */
119
+ extractStatus?: string;
120
+ /**
121
+ * 页码
122
+ *
123
+ * @type number
124
+ */
125
+ pageNum?: number;
126
+ /**
127
+ * 每页大小
128
+ *
129
+ * @type number
130
+ */
131
+ pageSize?: number;
132
+ /**
133
+ * 源文件名
134
+ *
135
+ * @type string
136
+ */
137
+ sourceFileName?: string;
138
+ /**
139
+ * 上传人姓名
140
+ *
141
+ * @type string
142
+ */
143
+ uploaderName?: string;
144
+ }
145
+ export interface AI表单转换批量上传响应 {
146
+ /**
147
+ * 失败数量
148
+ *
149
+ * @type number
150
+ */
151
+ failCount?: number;
152
+ /**
153
+ * 结果列表
154
+ *
155
+ * @type 文件处理结果[]
156
+ */
157
+ results?: 文件处理结果[];
158
+ /**
159
+ * 成功数量
160
+ *
161
+ * @type number
162
+ */
163
+ successCount?: number;
164
+ }
165
+ export interface AI表单转换批量上传请求 {
166
+ /**
167
+ * 原始文件名
168
+ *
169
+ * @type string
170
+ */
171
+ fileName?: string;
172
+ /**
173
+ * MinIO文件URL
174
+ *
175
+ * @type string
176
+ */
177
+ fileUrl?: string;
178
+ }
179
+ export interface AI表单转换更新请求 {
180
+ /**
181
+ * 纸张方向
182
+ *
183
+ * @type string
184
+ */
185
+ direction?: string;
186
+ /**
187
+ * 表单模式
188
+ *
189
+ * @type string
190
+ */
191
+ edition?: string;
192
+ /**
193
+ * 表单编码
194
+ *
195
+ * @type string
196
+ */
197
+ formCode?: string;
198
+ /**
199
+ * 表单名称
200
+ *
201
+ * @type string
202
+ */
203
+ formName?: string;
204
+ /**
205
+ * 表单类型
206
+ *
207
+ * @type string
208
+ */
209
+ formType?: string;
210
+ /**
211
+ * 尺寸(高度)
212
+ *
213
+ * @type number
214
+ */
215
+ height?: number;
216
+ /**
217
+ * 任务ID
218
+ *
219
+ * @type string
220
+ */
221
+ id?: string;
222
+ /**
223
+ * 文档类型
224
+ *
225
+ * @type string
226
+ */
227
+ officeType?: string;
228
+ /**
229
+ * 纸张大小
230
+ *
231
+ * @type string
232
+ */
233
+ paperSize?: string;
234
+ /**
235
+ * 提示词
236
+ *
237
+ * @type string
238
+ */
239
+ prompt?: string;
240
+ /**
241
+ * 来源
242
+ *
243
+ * @type string
244
+ */
245
+ source?: string;
246
+ /**
247
+ * 版本
248
+ *
249
+ * @type string
250
+ */
251
+ version?: string;
252
+ /**
253
+ * 尺寸(宽度)
254
+ *
255
+ * @type number
256
+ */
257
+ width?: number;
258
+ }
259
+ export interface AI表单转换查询请求 {
260
+ /**
261
+ * 解析状态
262
+ *
263
+ * @type string
264
+ */
265
+ convertStatus?: string;
266
+ /**
267
+ * 编码
268
+ *
269
+ * @type string
270
+ */
271
+ formCode?: string;
272
+ /**
273
+ * 表单名称
274
+ *
275
+ * @type string
276
+ */
277
+ formName?: string;
278
+ /**
279
+ * 表单类型
280
+ *
281
+ * @type string
282
+ */
283
+ formType?: string;
284
+ /**
285
+ * 页码
286
+ *
287
+ * @type number
288
+ */
289
+ pageNum?: number;
290
+ /**
291
+ * 每页数量
292
+ *
293
+ * @type number
294
+ */
295
+ pageSize?: number;
296
+ /**
297
+ * 来源
298
+ *
299
+ * @type string
300
+ */
301
+ source?: string;
302
+ }
303
+ export interface AI表单转换请求 {
304
+ /**
305
+ * 纸张方向
306
+ *
307
+ * @type string
308
+ */
309
+ direction?: string;
310
+ /**
311
+ * 表单模式:专业版:PROFESSIONAL 、普通版:EASY
312
+ *
313
+ * @type string
314
+ */
315
+ edition?: string;
316
+ /**
317
+ * 解压任务ID
318
+ *
319
+ * @type string
320
+ */
321
+ extractTaskId?: string;
322
+ /**
323
+ * 原始文件名
324
+ *
325
+ * @type string
326
+ */
327
+ fileName?: string;
328
+ /**
329
+ * MinIO文件URL
330
+ *
331
+ * @type string
332
+ */
333
+ fileUrl?: string;
334
+ /**
335
+ * 表单编码
336
+ *
337
+ * @type string
338
+ */
339
+ formCode?: string;
340
+ /**
341
+ * 表单名称
342
+ *
343
+ * @type string
344
+ */
345
+ formName?: string;
346
+ /**
347
+ * 表单类型
348
+ *
349
+ * @type string
350
+ */
351
+ formType?: string;
352
+ /**
353
+ * 尺寸(高度)
354
+ *
355
+ * @type number
356
+ */
357
+ height?: number;
358
+ /**
359
+ * 模型KEY
360
+ *
361
+ * @type string
362
+ */
363
+ modelKey?: string;
364
+ /**
365
+ * 文档类型
366
+ *
367
+ * @type string
368
+ */
369
+ officeType?: string;
370
+ /**
371
+ * 纸张大小
372
+ *
373
+ * @type string
374
+ */
375
+ paperSize?: string;
376
+ /**
377
+ * 提示词
378
+ *
379
+ * @type string
380
+ */
381
+ prompt?: string;
382
+ /**
383
+ * 来源
384
+ *
385
+ * @type string
386
+ */
387
+ source?: string;
388
+ /**
389
+ *
390
+ *
391
+ * @type string
392
+ */
393
+ sourceFileName?: string;
394
+ /**
395
+ * 版本
396
+ *
397
+ * @type string
398
+ */
399
+ version?: string;
400
+ /**
401
+ * 尺寸(宽度)
402
+ *
403
+ * @type number
404
+ */
405
+ width?: number;
406
+ }
407
+ export interface AI还原服务回调请求 {
408
+ /**
409
+ * 错误信息
410
+ *
411
+ * @type AI还原错误信息
412
+ */
413
+ error?: AI还原错误信息;
414
+ /**
415
+ * 源系统记录ID
416
+ *
417
+ * @type string
418
+ */
419
+ recordId?: string;
420
+ /**
421
+ * 还原结果
422
+ *
423
+ * @type AI还原结果
424
+ */
425
+ result?: AI还原结果;
426
+ /**
427
+ * 任务ID
428
+ *
429
+ * @type string
430
+ */
431
+ taskId?: string;
432
+ /**
433
+ * 任务状态
434
+ *
435
+ * @type string
436
+ */
437
+ taskStatus?: string;
438
+ }
439
+ export interface AI还原结果 {
440
+ /**
441
+ * 设计器JSON字符串
442
+ *
443
+ * @type string
444
+ */
445
+ designer?: string;
446
+ /**
447
+ * 模型元数据映射JSON字符串
448
+ *
449
+ * @type string
450
+ */
451
+ model_meta_map?: string;
452
+ }
453
+ export interface AI还原错误信息 {
454
+ /**
455
+ * 错误代码
456
+ *
457
+ * @type string
458
+ */
459
+ code?: string;
460
+ /**
461
+ * 错误消息
462
+ *
463
+ * @type string
464
+ */
465
+ message?: string;
466
+ }
1
467
  export interface AccountConfig {
2
468
  /**
3
469
  * 应用类型 枚举 (钉钉 DINGDING,企微 QIYEWEIXIN,飞书 FEISHU,微软 MICROSOFT)
@@ -12,6 +478,182 @@ export interface AccountConfig {
12
478
  */
13
479
  relationField?: string;
14
480
  }
481
+ export interface AiFormConvertResponse {
482
+ /**
483
+ * AI任务ID(调用AI接口返回的任务ID)
484
+ *
485
+ * @type string
486
+ */
487
+ aiTaskId?: string;
488
+ /**
489
+ * 解析完成时间
490
+ *
491
+ * @type string
492
+ */
493
+ completeTime?: string;
494
+ /**
495
+ * 解析结果JSON(AI返回的解析结果)
496
+ *
497
+ * @type string
498
+ */
499
+ convertResult?: string;
500
+ /**
501
+ * 解析状态编码
502
+ *
503
+ * @type string
504
+ */
505
+ convertStatus?: string;
506
+ /**
507
+ * 解析状态描述
508
+ *
509
+ * @type string
510
+ */
511
+ convertStatusDesc?: string;
512
+ /**
513
+ * 纸张方向
514
+ *
515
+ * @type string
516
+ */
517
+ direction?: string;
518
+ /**
519
+ * 表单模式
520
+ *
521
+ * @type string
522
+ */
523
+ edition?: string;
524
+ /**
525
+ * 解压任务ID(批量上传时关联的解压任务)
526
+ *
527
+ * @type string
528
+ */
529
+ extractTaskId?: string;
530
+ /**
531
+ * 失败原因
532
+ *
533
+ * @type string
534
+ */
535
+ failReason?: string;
536
+ /**
537
+ * 文件路径/MinIO URL
538
+ *
539
+ * @type string
540
+ */
541
+ filePath?: string;
542
+ /**
543
+ * 转换文件类型
544
+ *
545
+ * @type string
546
+ */
547
+ fileType?: string;
548
+ /**
549
+ * 表单编码
550
+ *
551
+ * @type string
552
+ */
553
+ formCode?: string;
554
+ /**
555
+ * 表单名称
556
+ *
557
+ * @type string
558
+ */
559
+ formName?: string;
560
+ /**
561
+ * 生成的表单模板ID
562
+ *
563
+ * @type string
564
+ */
565
+ formTmplId?: string;
566
+ /**
567
+ * 表单类型编码
568
+ *
569
+ * @type string
570
+ */
571
+ formType?: string;
572
+ /**
573
+ * 表单类型描述
574
+ *
575
+ * @type string
576
+ */
577
+ formTypeDesc?: string;
578
+ /**
579
+ * 尺寸(高度)
580
+ *
581
+ * @type number
582
+ */
583
+ height?: number;
584
+ /**
585
+ * 任务ID
586
+ *
587
+ * @type string
588
+ */
589
+ id?: string;
590
+ /**
591
+ * 模型KEY
592
+ *
593
+ * @type string
594
+ */
595
+ modelKey?: string;
596
+ /**
597
+ * 文档类型
598
+ *
599
+ * @type string
600
+ */
601
+ officeType?: string;
602
+ /**
603
+ * 纸张大小
604
+ *
605
+ * @type string
606
+ */
607
+ paperSize?: string;
608
+ /**
609
+ * 提示词
610
+ *
611
+ * @type string
612
+ */
613
+ prompt?: string;
614
+ /**
615
+ * 来源
616
+ *
617
+ * @type string
618
+ */
619
+ source?: string;
620
+ /**
621
+ * 源文件名
622
+ *
623
+ * @type string
624
+ */
625
+ sourceFileName?: string;
626
+ /**
627
+ * 上传时间
628
+ *
629
+ * @type string
630
+ */
631
+ uploadTime?: string;
632
+ /**
633
+ * 上传人ID
634
+ *
635
+ * @type string
636
+ */
637
+ uploaderId?: string;
638
+ /**
639
+ * 上传人姓名
640
+ *
641
+ * @type string
642
+ */
643
+ uploaderName?: string;
644
+ /**
645
+ * 版本
646
+ *
647
+ * @type string
648
+ */
649
+ version?: string;
650
+ /**
651
+ * 尺寸(宽度)
652
+ *
653
+ * @type number
654
+ */
655
+ width?: number;
656
+ }
15
657
  export interface ApiInfo {
16
658
  /**
17
659
  *
@@ -386,6 +1028,28 @@ export interface AppGrantedStatisticDTO {
386
1028
  */
387
1029
  used?: number;
388
1030
  }
1031
+ export interface AppGrantedUserBatchRemoveDetailRequest {
1032
+ /**
1033
+ * 源用户id
1034
+ *
1035
+ * @type string
1036
+ */
1037
+ sourceUserId?: string;
1038
+ /**
1039
+ * 目标用户id
1040
+ *
1041
+ * @type string
1042
+ */
1043
+ targetUserId?: string;
1044
+ }
1045
+ export interface AppGrantedUserBatchRemoveRequest {
1046
+ /**
1047
+ * 交接用户列表
1048
+ *
1049
+ * @type AppGrantedUserBatchRemoveDetailRequest[]
1050
+ */
1051
+ userList?: AppGrantedUserBatchRemoveDetailRequest[];
1052
+ }
389
1053
  export interface AppGrantedUserBatchRequest {
390
1054
  /**
391
1055
  * 用户id
@@ -1244,6 +1908,34 @@ export interface BasicConfigResponse {
1244
1908
  */
1245
1909
  pageType?: string;
1246
1910
  }
1911
+ export interface BatchTransferAllWorkItemDetailRequest {
1912
+ /**
1913
+ *
1914
+ *
1915
+ * @type string
1916
+ */
1917
+ fromUserId?: string;
1918
+ /**
1919
+ *
1920
+ *
1921
+ * @type string
1922
+ */
1923
+ toUserId?: string;
1924
+ }
1925
+ export interface BatchTransferAllWorkItemRequest {
1926
+ /**
1927
+ *
1928
+ *
1929
+ * @type string
1930
+ */
1931
+ appId?: string;
1932
+ /**
1933
+ *
1934
+ *
1935
+ * @type BatchTransferAllWorkItemDetailRequest[]
1936
+ */
1937
+ userList?: BatchTransferAllWorkItemDetailRequest[];
1938
+ }
1247
1939
  export interface BindRelatedIndstRequest {
1248
1940
  /**
1249
1941
  * 工序ID
@@ -2437,6 +3129,12 @@ export interface ChildEdhrInstanceRelationDTO {
2437
3129
  * @type string
2438
3130
  */
2439
3131
  productVersion?: string;
3132
+ /**
3133
+ *
3134
+ *
3135
+ * @type number
3136
+ */
3137
+ qty?: number;
2440
3138
  /**
2441
3139
  *
2442
3140
  *
@@ -3858,68 +4556,6 @@ export interface DashboardSortRequest {
3858
4556
  */
3859
4557
  targetSortNum?: number;
3860
4558
  }
3861
- export interface DataCollectionInstanceAbandonRequest {
3862
- /**
3863
- * 表单实例Id
3864
- *
3865
- * @type string
3866
- */
3867
- id?: string;
3868
- /**
3869
- * 作废原因
3870
- *
3871
- * @type string
3872
- */
3873
- reason?: string;
3874
- /**
3875
- * 签名历史id集合
3876
- *
3877
- * @type string[]
3878
- */
3879
- signHistoryIds?: string[];
3880
- /**
3881
- * 数据采集任务id
3882
- *
3883
- * @type string
3884
- */
3885
- taskId?: string;
3886
- }
3887
- export interface DataCollectionOnlineFormInstanceRequest {
3888
- /**
3889
- * 数据采集任务Id
3890
- *
3891
- * @type string
3892
- */
3893
- dataCollectionTaskId?: string;
3894
- /**
3895
- * 表单实例备注名
3896
- *
3897
- * @type string
3898
- */
3899
- instanceAlias?: string;
3900
- }
3901
- export interface DataCollectionOnlineFormInstanceUpdateRequest {
3902
- /**
3903
- * 表单实例Id
3904
- *
3905
- * @type string
3906
- */
3907
- id?: string;
3908
- /**
3909
- * 表单实例备注名
3910
- *
3911
- * @type string
3912
- */
3913
- instanceAlias?: string;
3914
- }
3915
- export interface DataCollectionTaskUpdateStatusRequest {
3916
- /**
3917
- * 数据采集任务id
3918
- *
3919
- * @type string
3920
- */
3921
- taskId?: string;
3922
- }
3923
4559
  export interface DataModelRequest {
3924
4560
  /**
3925
4561
  * 分类id
@@ -4489,6 +5125,12 @@ export interface DatasourceMoveDetail {
4489
5125
  * @type string
4490
5126
  */
4491
5127
  name?: string;
5128
+ /**
5129
+ *
5130
+ *
5131
+ * @type IObject
5132
+ */
5133
+ query?: IObject;
4492
5134
  /**
4493
5135
  *
4494
5136
  *
@@ -4661,6 +5303,12 @@ export interface DetailPageRequest {
4661
5303
  * @type string
4662
5304
  */
4663
5305
  key?: string;
5306
+ /**
5307
+ * logId
5308
+ *
5309
+ * @type string
5310
+ */
5311
+ logId?: string;
4664
5312
  /**
4665
5313
  * 页面名称
4666
5314
  *
@@ -5586,181 +6234,199 @@ export interface DocControlTaskDoneResponse {
5586
6234
  */
5587
6235
  initiatorName?: string;
5588
6236
  /**
5589
- *
5590
- *
5591
- * @type string
5592
- */
5593
- modifyTime?: string;
5594
- /**
5595
- *
5596
- *
5597
- * @type string
5598
- */
5599
- modifyUserId?: string;
5600
- /**
5601
- *
5602
- *
5603
- * @type string
5604
- */
5605
- modifyUserName?: string;
5606
- /**
5607
- * 线下版本号
5608
- *
5609
- * @type string
5610
- */
5611
- offlineVersion?: string;
5612
- /**
5613
- * 流程实例id
5614
- *
5615
- * @type string
5616
- */
5617
- processInstanceId?: string;
5618
- /**
5619
- * 提报时间
5620
- *
5621
- * @type string
5622
- */
5623
- startTime?: string;
5624
- /**
5625
- * 任务结束时间
5626
- *
5627
- * @type string
5628
- */
5629
- taskEndTime?: string;
5630
- /**
5631
- * 任务id
5632
- *
5633
- * @type string
5634
- */
5635
- taskId?: string;
5636
- /**
5637
- * 任务开始时间
5638
- *
5639
- * @type string
5640
- */
5641
- taskStartTime?: string;
5642
- /**
5643
- * 版本
5644
- *
5645
- * @type string
5646
- */
5647
- version?: string;
5648
- }
5649
- export interface DocControlTaskTodoResponse {
5650
- /**
5651
- * 处理人ID
5652
- *
5653
- * @type string
5654
- */
5655
- assigneeId?: string;
5656
- /**
5657
- * 处理人姓名
5658
- *
5659
- * @type string
5660
- */
5661
- assigneeName?: string;
5662
- /**
5663
- * 分类名称
5664
- *
5665
- * @type string
5666
- */
5667
- categoryName?: string;
5668
- /**
5669
- * 受控状态(UNCONTROLLED,RUNNING,CONTROLLED)
5670
- *
5671
- * @type string
5672
- */
5673
- controlStatus?: string;
5674
- /**
5675
- * 受控文件类型:FORM表单模板、EDHR edhr模板
5676
- *
5677
- * @type string
5678
- */
5679
- controlTmplType?: string;
5680
- /**
5681
- *
5682
- *
5683
- * @type string
5684
- */
5685
- createTime?: string;
5686
- /**
5687
- *
5688
- *
5689
- * @type string
5690
- */
5691
- createUserId?: string;
5692
- /**
5693
- *
5694
- *
5695
- * @type string
5696
- */
5697
- createUserName?: string;
5698
- /**
5699
- * 受控文件(表单/edhr模板)BASE_ID
5700
- *
5701
- * @type string
5702
- */
5703
- docBaseId?: string;
5704
- /**
5705
- * 受控文件版本编码(表单/edhr模板编号)
5706
- *
5707
- * @type string
5708
- */
5709
- docCode?: string;
5710
- /**
5711
- * 文控管理-我的发起ID
5712
- *
5713
- * @type string
5714
- */
5715
- docControlStartedId?: string;
5716
- /**
5717
- * 受控文件名称(表单/edhr模板名称)
5718
- *
5719
- * @type string
5720
- */
5721
- docName?: string;
5722
- /**
5723
- * 受控文件版本id(表单/edhr模板id)
5724
- *
5725
- * @type string
5726
- */
5727
- docVersionId?: string;
5728
- /**
5729
- * 主键
6237
+ *
6238
+ *
6239
+ * @type string
6240
+ */
6241
+ modifyTime?: string;
6242
+ /**
6243
+ *
6244
+ *
6245
+ * @type string
6246
+ */
6247
+ modifyUserId?: string;
6248
+ /**
6249
+ *
6250
+ *
6251
+ * @type string
6252
+ */
6253
+ modifyUserName?: string;
6254
+ /**
6255
+ * 线下版本号
6256
+ *
6257
+ * @type string
6258
+ */
6259
+ offlineVersion?: string;
6260
+ /**
6261
+ * 流程实例id
6262
+ *
6263
+ * @type string
6264
+ */
6265
+ processInstanceId?: string;
6266
+ /**
6267
+ * 提报时间
6268
+ *
6269
+ * @type string
6270
+ */
6271
+ startTime?: string;
6272
+ /**
6273
+ * 任务结束时间
6274
+ *
6275
+ * @type string
6276
+ */
6277
+ taskEndTime?: string;
6278
+ /**
6279
+ * 任务id
6280
+ *
6281
+ * @type string
6282
+ */
6283
+ taskId?: string;
6284
+ /**
6285
+ * 任务开始时间
6286
+ *
6287
+ * @type string
6288
+ */
6289
+ taskStartTime?: string;
6290
+ /**
6291
+ * 版本
6292
+ *
6293
+ * @type string
6294
+ */
6295
+ version?: string;
6296
+ }
6297
+ export interface DocControlTaskTodoResponse {
6298
+ /**
6299
+ * 处理人ID
6300
+ *
6301
+ * @type string
6302
+ */
6303
+ assigneeId?: string;
6304
+ /**
6305
+ * 处理人姓名
6306
+ *
6307
+ * @type string
6308
+ */
6309
+ assigneeName?: string;
6310
+ /**
6311
+ * 分类名称
6312
+ *
6313
+ * @type string
6314
+ */
6315
+ categoryName?: string;
6316
+ /**
6317
+ * 受控状态(UNCONTROLLED,RUNNING,CONTROLLED)
6318
+ *
6319
+ * @type string
6320
+ */
6321
+ controlStatus?: string;
6322
+ /**
6323
+ * 受控文件类型:FORM表单模板、EDHR edhr模板
6324
+ *
6325
+ * @type string
6326
+ */
6327
+ controlTmplType?: string;
6328
+ /**
6329
+ *
6330
+ *
6331
+ * @type string
6332
+ */
6333
+ createTime?: string;
6334
+ /**
6335
+ *
6336
+ *
6337
+ * @type string
6338
+ */
6339
+ createUserId?: string;
6340
+ /**
6341
+ *
6342
+ *
6343
+ * @type string
6344
+ */
6345
+ createUserName?: string;
6346
+ /**
6347
+ * 受控文件(表单/edhr模板)BASE_ID
6348
+ *
6349
+ * @type string
6350
+ */
6351
+ docBaseId?: string;
6352
+ /**
6353
+ * 受控文件版本编码(表单/edhr模板编号)
6354
+ *
6355
+ * @type string
6356
+ */
6357
+ docCode?: string;
6358
+ /**
6359
+ * 文控管理-我的发起ID
6360
+ *
6361
+ * @type string
6362
+ */
6363
+ docControlStartedId?: string;
6364
+ /**
6365
+ * 受控文件名称(表单/edhr模板名称)
6366
+ *
6367
+ * @type string
6368
+ */
6369
+ docName?: string;
6370
+ /**
6371
+ * 受控文件版本id(表单/edhr模板id)
6372
+ *
6373
+ * @type string
6374
+ */
6375
+ docVersionId?: string;
6376
+ /**
6377
+ * 表单类型:BASE 基础表单、PROCESS 流程表单、VIEW视图表单、TEXT文本表单
6378
+ *
6379
+ * @type string
6380
+ */
6381
+ formType?: string;
6382
+ /**
6383
+ * 主键
6384
+ *
6385
+ * @type string
6386
+ */
6387
+ id?: string;
6388
+ /**
6389
+ * 发起人iD
6390
+ *
6391
+ * @type string
6392
+ */
6393
+ initiator?: string;
6394
+ /**
6395
+ * 发起人姓名
6396
+ *
6397
+ * @type string
6398
+ */
6399
+ initiatorName?: string;
6400
+ /**
6401
+ * 模型key
5730
6402
  *
5731
6403
  * @type string
5732
6404
  */
5733
- id?: string;
6405
+ modelKey?: string;
5734
6406
  /**
5735
- * 发起人iD
5736
6407
  *
5737
- * @type string
5738
- */
5739
- initiator?: string;
5740
- /**
5741
- * 发起人姓名
5742
6408
  *
5743
6409
  * @type string
5744
6410
  */
5745
- initiatorName?: string;
6411
+ modifyTime?: string;
5746
6412
  /**
5747
6413
  *
5748
6414
  *
5749
6415
  * @type string
5750
6416
  */
5751
- modifyTime?: string;
6417
+ modifyUserId?: string;
5752
6418
  /**
5753
6419
  *
5754
6420
  *
5755
6421
  * @type string
5756
6422
  */
5757
- modifyUserId?: string;
6423
+ modifyUserName?: string;
5758
6424
  /**
5759
6425
  *
5760
6426
  *
5761
6427
  * @type string
5762
6428
  */
5763
- modifyUserName?: string;
6429
+ officeType?: string;
5764
6430
  /**
5765
6431
  * 线下版本号
5766
6432
  *
@@ -6891,6 +7557,12 @@ export interface EdhrInstance {
6891
7557
  * @type string
6892
7558
  */
6893
7559
  productVersion?: string;
7560
+ /**
7561
+ *
7562
+ *
7563
+ * @type number
7564
+ */
7565
+ qty?: number;
6894
7566
  /**
6895
7567
  *
6896
7568
  *
@@ -7235,6 +7907,12 @@ export interface EdhrInstanceResponse {
7235
7907
  * @type string
7236
7908
  */
7237
7909
  productVersion?: string;
7910
+ /**
7911
+ * 数量
7912
+ *
7913
+ * @type number
7914
+ */
7915
+ qty?: number;
7238
7916
  /**
7239
7917
  * 流水号
7240
7918
  *
@@ -9689,6 +10367,12 @@ export interface FieldMeta {
9689
10367
  * @type number
9690
10368
  */
9691
10369
  backendOnly?: number;
10370
+ /**
10371
+ * 所属对象
10372
+ *
10373
+ * @type string
10374
+ */
10375
+ belongingObject?: string;
9692
10376
  /**
9693
10377
  * 主子关联 绑定子模型字段
9694
10378
  *
@@ -9917,6 +10601,12 @@ export interface FieldMetaDTO {
9917
10601
  * @type number
9918
10602
  */
9919
10603
  backendOnly?: number;
10604
+ /**
10605
+ * 所属对象
10606
+ *
10607
+ * @type string
10608
+ */
10609
+ belongingObject?: string;
9920
10610
  /**
9921
10611
  * 主子关联 绑定子模型字段
9922
10612
  *
@@ -10439,6 +11129,12 @@ export interface FieldMetaResponse {
10439
11129
  type?: string;
10440
11130
  }
10441
11131
  export interface FieldMetaVO {
11132
+ /**
11133
+ * 所属对象
11134
+ *
11135
+ * @type string
11136
+ */
11137
+ belongingObject?: string;
10442
11138
  /**
10443
11139
  * 主子关联 绑定子模型字段
10444
11140
  *
@@ -10965,6 +11661,12 @@ export interface FormTaskGetDTO {
10965
11661
  * @type string
10966
11662
  */
10967
11663
  relatedMaterialNo?: string;
11664
+ /**
11665
+ * 关联工单id
11666
+ *
11667
+ * @type string
11668
+ */
11669
+ relatedMfgOrderId?: string;
10968
11670
  /**
10969
11671
  * 流水号
10970
11672
  *
@@ -11139,6 +11841,12 @@ export interface GetAppResponse {
11139
11841
  * @type number
11140
11842
  */
11141
11843
  clear?: number;
11844
+ /**
11845
+ *
11846
+ *
11847
+ * @type string
11848
+ */
11849
+ clientSecret?: string;
11142
11850
  /**
11143
11851
  *
11144
11852
  *
@@ -11247,6 +11955,12 @@ export interface GetAppResponse {
11247
11955
  * @type string
11248
11956
  */
11249
11957
  name?: string;
11958
+ /**
11959
+ *
11960
+ *
11961
+ * @type string
11962
+ */
11963
+ oauth2Scope?: string;
11250
11964
  /**
11251
11965
  *
11252
11966
  *
@@ -11259,6 +11973,18 @@ export interface GetAppResponse {
11259
11973
  * @type string
11260
11974
  */
11261
11975
  pageIcon?: string;
11976
+ /**
11977
+ *
11978
+ *
11979
+ * @type boolean
11980
+ */
11981
+ pubProd?: boolean;
11982
+ /**
11983
+ *
11984
+ *
11985
+ * @type string
11986
+ */
11987
+ redirectUri?: string;
11262
11988
  /**
11263
11989
  *
11264
11990
  *
@@ -11319,6 +12045,12 @@ export interface GetAppResponse {
11319
12045
  * @type string
11320
12046
  */
11321
12047
  tenantId?: string;
12048
+ /**
12049
+ *
12050
+ *
12051
+ * @type string
12052
+ */
12053
+ testRedirectUri?: string;
11322
12054
  /**
11323
12055
  *
11324
12056
  *
@@ -12108,6 +12840,12 @@ export interface InstanceRelationRequest {
12108
12840
  * @type string
12109
12841
  */
12110
12842
  module?: string;
12843
+ /**
12844
+ * 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
12845
+ *
12846
+ * @type string
12847
+ */
12848
+ relationObject?: string;
12111
12849
  /**
12112
12850
  * 来源批次号
12113
12851
  *
@@ -12194,6 +12932,12 @@ export interface InstanceRelationResponse {
12194
12932
  * @type string
12195
12933
  */
12196
12934
  module?: string;
12935
+ /**
12936
+ * 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
12937
+ *
12938
+ * @type string
12939
+ */
12940
+ relationObject?: string;
12197
12941
  /**
12198
12942
  * 来源批次号
12199
12943
  *
@@ -14866,38 +15610,6 @@ export interface MobilePageResponse {
14866
15610
  */
14867
15611
  terminal?: string;
14868
15612
  }
14869
- export interface ModelAssociationResponse {
14870
- /**
14871
- *
14872
- *
14873
- * @type number
14874
- */
14875
- dataCount?: number;
14876
- /**
14877
- *
14878
- *
14879
- * @type string
14880
- */
14881
- fieldKey?: string;
14882
- /**
14883
- *
14884
- *
14885
- * @type string
14886
- */
14887
- fieldType?: string;
14888
- /**
14889
- *
14890
- *
14891
- * @type string
14892
- */
14893
- modelKey?: string;
14894
- /**
14895
- *
14896
- *
14897
- * @type string
14898
- */
14899
- modelName?: string;
14900
- }
14901
15613
  export interface ModelBriefInfo {
14902
15614
  /**
14903
15615
  * 种类
@@ -16499,6 +17211,12 @@ export interface OfProcessApproveRequest {
16499
17211
  * @type IObject
16500
17212
  */
16501
17213
  data?: IObject;
17214
+ /**
17215
+ * 下一审核节点范围人员(格式:USER:xxx,USER:xxx)
17216
+ *
17217
+ * @type string
17218
+ */
17219
+ nextApproveRangeUser?: string;
16502
17220
  /**
16503
17221
  * 是否不记录表单日志
16504
17222
  *
@@ -17033,6 +17751,12 @@ export interface OfProcessSubmitRequest {
17033
17751
  * @type OnlineFormChangeHistoryRequest
17034
17752
  */
17035
17753
  historyRequest?: OnlineFormChangeHistoryRequest;
17754
+ /**
17755
+ * 下一审核节点范围人员(格式:USER:xxx,USER:xxx)
17756
+ *
17757
+ * @type string
17758
+ */
17759
+ nextApproveRangeUser?: string;
17036
17760
  /**
17037
17761
  * 是否不记录表单日志
17038
17762
  *
@@ -17557,6 +18281,12 @@ export interface OnlineFormDataInitProtocolDTO {
17557
18281
  name?: string;
17558
18282
  }
17559
18283
  export interface OnlineFormDesignDTO {
18284
+ /**
18285
+ * 签名字段校验配置
18286
+ *
18287
+ * @type string
18288
+ */
18289
+ checkSignatureConfig?: string;
17560
18290
  /**
17561
18291
  * 通信配置
17562
18292
  *
@@ -17581,6 +18311,12 @@ export interface OnlineFormDesignDTO {
17581
18311
  * @type object[]
17582
18312
  */
17583
18313
  formTmplBomList?: object[];
18314
+ /**
18315
+ * 高度
18316
+ *
18317
+ * @type number
18318
+ */
18319
+ height?: number;
17584
18320
  /**
17585
18321
  * 修改时间
17586
18322
  *
@@ -17599,14 +18335,32 @@ export interface OnlineFormDesignDTO {
17599
18335
  * @type string
17600
18336
  */
17601
18337
  modifyUserName?: string;
18338
+ /**
18339
+ * 纸张大小
18340
+ *
18341
+ * @type string
18342
+ */
18343
+ paperSize?: string;
17602
18344
  /**
17603
18345
  * 运行时json
17604
18346
  *
17605
18347
  * @type string
17606
18348
  */
17607
18349
  runtimeJson?: string;
18350
+ /**
18351
+ * 宽度
18352
+ *
18353
+ * @type number
18354
+ */
18355
+ width?: number;
17608
18356
  }
17609
18357
  export interface OnlineFormFieldMetaVO {
18358
+ /**
18359
+ * 所属对象
18360
+ *
18361
+ * @type string
18362
+ */
18363
+ belongingObject?: string;
17610
18364
  /**
17611
18365
  * 主子关联 绑定子模型字段
17612
18366
  *
@@ -17717,6 +18471,12 @@ export interface OnlineFormInsTaskRequest {
17717
18471
  * @type string
17718
18472
  */
17719
18473
  formType?: string;
18474
+ /**
18475
+ * 关联工单id集合
18476
+ *
18477
+ * @type string[]
18478
+ */
18479
+ mfgOrderIds?: string[];
17720
18480
  /**
17721
18481
  * 模块类型
17722
18482
  *
@@ -17747,6 +18507,12 @@ export interface OnlineFormInsTaskRequest {
17747
18507
  * @type string[]
17748
18508
  */
17749
18509
  relatedMaterialNos?: string[];
18510
+ /**
18511
+ * 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
18512
+ *
18513
+ * @type string
18514
+ */
18515
+ relationObject?: string;
17750
18516
  /**
17751
18517
  * 任务标题
17752
18518
  *
@@ -17889,6 +18655,12 @@ export interface OnlineFormInstance {
17889
18655
  * @type string
17890
18656
  */
17891
18657
  docOutlineId?: string;
18658
+ /**
18659
+ *
18660
+ *
18661
+ * @type EdhrInstance
18662
+ */
18663
+ edhrInstance?: EdhrInstance;
17892
18664
  /**
17893
18665
  *
17894
18666
  *
@@ -18003,6 +18775,12 @@ export interface OnlineFormInstance {
18003
18775
  * @type string
18004
18776
  */
18005
18777
  instanceStatus?: string;
18778
+ /**
18779
+ *
18780
+ *
18781
+ * @type boolean
18782
+ */
18783
+ isRef?: boolean;
18006
18784
  /**
18007
18785
  *
18008
18786
  *
@@ -18141,6 +18919,18 @@ export interface OnlineFormInstance {
18141
18919
  * @type string[]
18142
18920
  */
18143
18921
  relatedMaterialNos?: string[];
18922
+ /**
18923
+ *
18924
+ *
18925
+ * @type string
18926
+ */
18927
+ relatedMfgOrderCodes?: string;
18928
+ /**
18929
+ *
18930
+ *
18931
+ * @type string[]
18932
+ */
18933
+ relatedMfgOrderIds?: string[];
18144
18934
  /**
18145
18935
  *
18146
18936
  *
@@ -18755,6 +19545,12 @@ export interface OnlineFormInstanceResponse {
18755
19545
  * @type string
18756
19546
  */
18757
19547
  instanceStatus?: string;
19548
+ /**
19549
+ * 是否是引用实例
19550
+ *
19551
+ * @type boolean
19552
+ */
19553
+ isRef?: boolean;
18758
19554
  /**
18759
19555
  * 物料编号
18760
19556
  *
@@ -18899,6 +19695,18 @@ export interface OnlineFormInstanceResponse {
18899
19695
  * @type string[]
18900
19696
  */
18901
19697
  relatedMaterialNos?: string[];
19698
+ /**
19699
+ * 关联工单code
19700
+ *
19701
+ * @type string
19702
+ */
19703
+ relatedMfgOrderCodes?: string;
19704
+ /**
19705
+ * 关联工单id集合
19706
+ *
19707
+ * @type string[]
19708
+ */
19709
+ relatedMfgOrderIds?: string[];
18902
19710
  /**
18903
19711
  * 关联id
18904
19712
  *
@@ -19413,6 +20221,12 @@ export interface OnlineFormTmplModelResponse {
19413
20221
  * @type string
19414
20222
  */
19415
20223
  categoryName?: string;
20224
+ /**
20225
+ * 签名字段校验配置
20226
+ *
20227
+ * @type string
20228
+ */
20229
+ checkSignatureConfig?: string;
19416
20230
  /**
19417
20231
  * 编号
19418
20232
  *
@@ -19875,6 +20689,12 @@ export interface OnlineFormTmplResponse {
19875
20689
  * @type string
19876
20690
  */
19877
20691
  categoryName?: string;
20692
+ /**
20693
+ * 签名字段校验配置
20694
+ *
20695
+ * @type string
20696
+ */
20697
+ checkSignatureConfig?: string;
19878
20698
  /**
19879
20699
  * 编号
19880
20700
  *
@@ -22625,6 +23445,12 @@ export interface PrintAdapterDTO {
22625
23445
  * @type string
22626
23446
  */
22627
23447
  env?: string;
23448
+ /**
23449
+ * 打印控制参数
23450
+ *
23451
+ * @type IObject
23452
+ */
23453
+ param?: IObject;
22628
23454
  /**
22629
23455
  * 触发打印的应用id
22630
23456
  *
@@ -22755,6 +23581,12 @@ export interface PrintLogResponse {
22755
23581
  * @type string
22756
23582
  */
22757
23583
  modifyUserName?: string;
23584
+ /**
23585
+ * 打印控制参数
23586
+ *
23587
+ * @type IObject
23588
+ */
23589
+ param?: IObject;
22758
23590
  /**
22759
23591
  * 触发打印的应用id
22760
23592
  *
@@ -29061,6 +29893,12 @@ export interface ProductReleaseFormInstanctDTO {
29061
29893
  * @type string
29062
29894
  */
29063
29895
  docOutlineId?: string;
29896
+ /**
29897
+ *
29898
+ *
29899
+ * @type EdhrInstance
29900
+ */
29901
+ edhrInstance?: EdhrInstance;
29064
29902
  /**
29065
29903
  *
29066
29904
  *
@@ -29175,6 +30013,12 @@ export interface ProductReleaseFormInstanctDTO {
29175
30013
  * @type string
29176
30014
  */
29177
30015
  instanceStatus?: string;
30016
+ /**
30017
+ *
30018
+ *
30019
+ * @type boolean
30020
+ */
30021
+ isRef?: boolean;
29178
30022
  /**
29179
30023
  *
29180
30024
  *
@@ -29313,6 +30157,18 @@ export interface ProductReleaseFormInstanctDTO {
29313
30157
  * @type string[]
29314
30158
  */
29315
30159
  relatedMaterialNos?: string[];
30160
+ /**
30161
+ *
30162
+ *
30163
+ * @type string
30164
+ */
30165
+ relatedMfgOrderCodes?: string;
30166
+ /**
30167
+ *
30168
+ *
30169
+ * @type string[]
30170
+ */
30171
+ relatedMfgOrderIds?: string[];
29316
30172
  /**
29317
30173
  *
29318
30174
  *
@@ -33641,6 +34497,12 @@ export interface Sort {
33641
34497
  * @type string
33642
34498
  */
33643
34499
  sortType?: string;
34500
+ /**
34501
+ *
34502
+ *
34503
+ * @type string
34504
+ */
34505
+ table?: string;
33644
34506
  }
33645
34507
  export interface SqlViewModelRequest {
33646
34508
  /**
@@ -37894,75 +38756,93 @@ export interface XmlSettingTableColum {
37894
38756
  */
37895
38757
  type?: string;
37896
38758
  }
37897
- export interface modelDataAssociationRequest {
38759
+ export interface 发送消息DTO {
37898
38760
  /**
37899
- * fieldKey
38761
+ * 邮件内容
37900
38762
  *
37901
38763
  * @type string
37902
38764
  */
37903
- fieldKey?: string;
38765
+ content?: string;
37904
38766
  /**
37905
- * fieldType
37906
38767
  *
37907
- * @type string
37908
- */
37909
- fieldType?: string;
37910
- /**
37911
- * 数据id
37912
38768
  *
37913
38769
  * @type string
37914
38770
  */
37915
38771
  id?: string;
37916
38772
  /**
37917
- * modelKey
38773
+ * 接收人Id , 多个人员id用英文逗号隔开
37918
38774
  *
37919
38775
  * @type string
37920
38776
  */
37921
- modelKey?: string;
38777
+ receiveUserId?: string;
37922
38778
  /**
37923
- * 页码
38779
+ * 邮件标题
37924
38780
  *
37925
- * @type number
38781
+ * @type string
37926
38782
  */
37927
- pageNo?: number;
38783
+ title?: string;
37928
38784
  /**
37929
- * 分页大小
38785
+ * 目标客户端类型枚举 email 邮箱 dingtalk 钉钉 wecom 企业微信 feishu 飞书 system 站内信
37930
38786
  *
37931
- * @type number
38787
+ * @type string
37932
38788
  */
37933
- pageSize?: number;
38789
+ type?: string;
37934
38790
  }
37935
- export interface 发送消息DTO {
38791
+ export interface 批量添加表单模板请求 {
37936
38792
  /**
37937
- * 邮件内容
38793
+ * 分类ID
37938
38794
  *
37939
38795
  * @type string
37940
38796
  */
37941
- content?: string;
38797
+ categoryId?: string;
37942
38798
  /**
38799
+ * 表单模板信息列表
37943
38800
  *
38801
+ * @type 添加表单模板请求[]
38802
+ */
38803
+ formTmplInfos?: 添加表单模板请求[];
38804
+ }
38805
+ export interface 文件处理结果 {
38806
+ /**
38807
+ * 失败原因
37944
38808
  *
37945
38809
  * @type string
37946
38810
  */
37947
- id?: string;
38811
+ failReason?: string;
37948
38812
  /**
37949
- * 接收人Id , 多个人员id用英文逗号隔开
38813
+ * 文件名
37950
38814
  *
37951
38815
  * @type string
37952
38816
  */
37953
- receiveUserId?: string;
38817
+ fileName?: string;
37954
38818
  /**
37955
- * 邮件标题
38819
+ * 是否成功
37956
38820
  *
37957
- * @type string
38821
+ * @type boolean
37958
38822
  */
37959
- title?: string;
38823
+ success?: boolean;
37960
38824
  /**
37961
- * 目标客户端类型枚举 email 邮箱 dingtalk 钉钉 wecom 企业微信 feishu 飞书 system 站内信
38825
+ * 任务ID
37962
38826
  *
37963
38827
  * @type string
37964
38828
  */
37965
- type?: string;
38829
+ taskId?: string;
38830
+ }
38831
+ export interface 查询解压失败原因请求 {
38832
+ /**
38833
+ * 解压任务 ID 列表
38834
+ *
38835
+ * @type string[]
38836
+ */
38837
+ taskIds?: string[];
38838
+ }
38839
+ export interface 查询转换失败原因请求 {
38840
+ /**
38841
+ * 转换任务 ID 列表
38842
+ *
38843
+ * @type string[]
38844
+ */
38845
+ taskIds?: string[];
37966
38846
  }
37967
38847
  export interface 消息设置VO {
37968
38848
  /**
@@ -38062,3 +38942,141 @@ export interface 消息设置VO {
38062
38942
  */
38063
38943
  userName?: string;
38064
38944
  }
38945
+ export interface 添加表单模板请求 {
38946
+ /**
38947
+ * 分类ID
38948
+ *
38949
+ * @type string
38950
+ */
38951
+ categoryId?: string;
38952
+ /**
38953
+ * 是否默认版本
38954
+ *
38955
+ * @type boolean
38956
+ */
38957
+ defaulted?: boolean;
38958
+ /**
38959
+ * 表单名称
38960
+ *
38961
+ * @type string
38962
+ */
38963
+ formName?: string;
38964
+ /**
38965
+ * 表单模板ID(转换列表的form_tmpl_id_字段)
38966
+ *
38967
+ * @type string
38968
+ */
38969
+ formTmplId?: string;
38970
+ /**
38971
+ * 转换任务ID
38972
+ *
38973
+ * @type string
38974
+ */
38975
+ taskId?: string;
38976
+ /**
38977
+ * 版本值
38978
+ *
38979
+ * @type string
38980
+ */
38981
+ version?: string;
38982
+ }
38983
+ export interface 解压失败原因响应 {
38984
+ /**
38985
+ * 完成时间
38986
+ *
38987
+ * @type string
38988
+ */
38989
+ completeTime?: string;
38990
+ /**
38991
+ * 解压状态
38992
+ *
38993
+ * @type string
38994
+ */
38995
+ extractStatus?: string;
38996
+ /**
38997
+ * 解压状态描述
38998
+ *
38999
+ * @type string
39000
+ */
39001
+ extractStatusDesc?: string;
39002
+ /**
39003
+ * 失败原因
39004
+ *
39005
+ * @type string
39006
+ */
39007
+ failReason?: string;
39008
+ /**
39009
+ * 文件名
39010
+ *
39011
+ * @type string
39012
+ */
39013
+ fileName?: string;
39014
+ /**
39015
+ * 任务 ID
39016
+ *
39017
+ * @type string
39018
+ */
39019
+ taskId?: string;
39020
+ /**
39021
+ * 上传时间
39022
+ *
39023
+ * @type string
39024
+ */
39025
+ uploadTime?: string;
39026
+ }
39027
+ export interface 转换失败原因响应 {
39028
+ /**
39029
+ * 完成时间
39030
+ *
39031
+ * @type string
39032
+ */
39033
+ completeTime?: string;
39034
+ /**
39035
+ * 转换状态
39036
+ *
39037
+ * @type string
39038
+ */
39039
+ convertStatus?: string;
39040
+ /**
39041
+ * 转换状态描述
39042
+ *
39043
+ * @type string
39044
+ */
39045
+ convertStatusDesc?: string;
39046
+ /**
39047
+ * 失败原因
39048
+ *
39049
+ * @type string
39050
+ */
39051
+ failReason?: string;
39052
+ /**
39053
+ * 文件名
39054
+ *
39055
+ * @type string
39056
+ */
39057
+ fileName?: string;
39058
+ /**
39059
+ * 表单编码
39060
+ *
39061
+ * @type string
39062
+ */
39063
+ formCode?: string;
39064
+ /**
39065
+ * 表单名称
39066
+ *
39067
+ * @type string
39068
+ */
39069
+ formName?: string;
39070
+ /**
39071
+ * 任务 ID
39072
+ *
39073
+ * @type string
39074
+ */
39075
+ taskId?: string;
39076
+ /**
39077
+ * 上传时间
39078
+ *
39079
+ * @type string
39080
+ */
39081
+ uploadTime?: string;
39082
+ }