@gct-paas/api 6.0.0-dev.0 → 6.0.0-dev.10

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 (43) 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 +35 -0
  6. package/es/apaas/service/apis/app-global-settings.service.d.ts +8 -0
  7. package/es/apaas/service/apis/app-granted-user.service.d.ts +21 -0
  8. package/es/apaas/service/apis/category.service.d.ts +8 -0
  9. package/es/apaas/service/apis/dhr.service.d.ts +4 -0
  10. package/es/apaas/service/apis/edhr-instance.service.d.ts +16 -0
  11. package/es/apaas/service/apis/field-meta.service.d.ts +8 -0
  12. package/es/apaas/service/apis/online-form-instance.service.d.ts +16 -45
  13. package/es/apaas/service/apis/online-form.service.d.ts +18 -0
  14. package/es/apaas/service/apis/page-designer-log.service.d.ts +1 -1
  15. package/es/apaas/service/entities.d.ts +1215 -131
  16. package/es/apaas/service/index.d.ts +4 -4
  17. package/es/ipaas/service/api-config.mjs +381 -0
  18. package/es/ipaas/service/apis/app.service.d.ts +26 -0
  19. package/es/ipaas/service/apis/bff.service.d.ts +15 -0
  20. package/es/ipaas/service/apis/categories.service.d.ts +9 -0
  21. package/es/ipaas/service/apis/category.service.d.ts +33 -1
  22. package/es/ipaas/service/apis/file.service.d.ts +17 -0
  23. package/es/ipaas/service/apis/flow.service.d.ts +234 -1
  24. package/es/ipaas/service/apis/knowledge.service.d.ts +196 -0
  25. package/es/ipaas/service/apis/variable-def.service.d.ts +87 -0
  26. package/es/ipaas/service/apis/variable-inst.service.d.ts +63 -0
  27. package/es/ipaas/service/entities.d.ts +1386 -37
  28. package/es/ipaas/service/index.d.ts +14 -0
  29. package/es/platform/service/api-config.mjs +96 -4
  30. package/es/platform/service/apis/api.service.d.ts +94 -1
  31. package/es/platform/service/apis/app.service.d.ts +30 -0
  32. package/es/platform/service/apis/license.service.d.ts +10 -1
  33. package/es/platform/service/apis/print-log.service.d.ts +4 -0
  34. package/es/platform/service/apis/third-party-app.service.d.ts +110 -0
  35. package/es/platform/service/entities.d.ts +393 -1
  36. package/es/platform/service/index.d.ts +2 -0
  37. package/es/service/api-service.interface.d.ts +9 -0
  38. package/es/service/http.error.mjs +3 -0
  39. package/es/service/index.mjs +2 -0
  40. package/package.json +5 -5
  41. package/es/apaas/service/apis/med-pro.service.d.ts +0 -76
  42. package/es/apaas/service/apis/medPro.service.d.ts +0 -184
  43. 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
  *
@@ -279,6 +921,12 @@ export interface AppGlobalSettingsRequest {
279
921
  * @type string
280
922
  */
281
923
  source?: string;
924
+ /**
925
+ * 所属模块(详情页:detail_page)
926
+ *
927
+ * @type string
928
+ */
929
+ subjectType?: string;
282
930
  /**
283
931
  * 类型:模态框/变量/事件等
284
932
  *
@@ -353,6 +1001,12 @@ export interface AppGlobalSettingsResponse {
353
1001
  * @type string
354
1002
  */
355
1003
  source?: string;
1004
+ /**
1005
+ * 所属模块
1006
+ *
1007
+ * @type string
1008
+ */
1009
+ subjectType?: string;
356
1010
  /**
357
1011
  * 类型:模态框/变量/事件
358
1012
  *
@@ -386,6 +1040,28 @@ export interface AppGrantedStatisticDTO {
386
1040
  */
387
1041
  used?: number;
388
1042
  }
1043
+ export interface AppGrantedUserBatchRemoveDetailRequest {
1044
+ /**
1045
+ * 源用户id
1046
+ *
1047
+ * @type string
1048
+ */
1049
+ sourceUserId?: string;
1050
+ /**
1051
+ * 目标用户id
1052
+ *
1053
+ * @type string
1054
+ */
1055
+ targetUserId?: string;
1056
+ }
1057
+ export interface AppGrantedUserBatchRemoveRequest {
1058
+ /**
1059
+ * 交接用户列表
1060
+ *
1061
+ * @type AppGrantedUserBatchRemoveDetailRequest[]
1062
+ */
1063
+ userList?: AppGrantedUserBatchRemoveDetailRequest[];
1064
+ }
389
1065
  export interface AppGrantedUserBatchRequest {
390
1066
  /**
391
1067
  * 用户id
@@ -1244,6 +1920,34 @@ export interface BasicConfigResponse {
1244
1920
  */
1245
1921
  pageType?: string;
1246
1922
  }
1923
+ export interface BatchTransferAllWorkItemDetailRequest {
1924
+ /**
1925
+ *
1926
+ *
1927
+ * @type string
1928
+ */
1929
+ fromUserId?: string;
1930
+ /**
1931
+ *
1932
+ *
1933
+ * @type string
1934
+ */
1935
+ toUserId?: string;
1936
+ }
1937
+ export interface BatchTransferAllWorkItemRequest {
1938
+ /**
1939
+ *
1940
+ *
1941
+ * @type string
1942
+ */
1943
+ appId?: string;
1944
+ /**
1945
+ *
1946
+ *
1947
+ * @type BatchTransferAllWorkItemDetailRequest[]
1948
+ */
1949
+ userList?: BatchTransferAllWorkItemDetailRequest[];
1950
+ }
1247
1951
  export interface BindRelatedIndstRequest {
1248
1952
  /**
1249
1953
  * 工序ID
@@ -2437,6 +3141,12 @@ export interface ChildEdhrInstanceRelationDTO {
2437
3141
  * @type string
2438
3142
  */
2439
3143
  productVersion?: string;
3144
+ /**
3145
+ *
3146
+ *
3147
+ * @type number
3148
+ */
3149
+ qty?: number;
2440
3150
  /**
2441
3151
  *
2442
3152
  *
@@ -3858,68 +4568,6 @@ export interface DashboardSortRequest {
3858
4568
  */
3859
4569
  targetSortNum?: number;
3860
4570
  }
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
4571
  export interface DataModelRequest {
3924
4572
  /**
3925
4573
  * 分类id
@@ -4489,6 +5137,12 @@ export interface DatasourceMoveDetail {
4489
5137
  * @type string
4490
5138
  */
4491
5139
  name?: string;
5140
+ /**
5141
+ *
5142
+ *
5143
+ * @type IObject
5144
+ */
5145
+ query?: IObject;
4492
5146
  /**
4493
5147
  *
4494
5148
  *
@@ -4661,6 +5315,12 @@ export interface DetailPageRequest {
4661
5315
  * @type string
4662
5316
  */
4663
5317
  key?: string;
5318
+ /**
5319
+ * logId
5320
+ *
5321
+ * @type string
5322
+ */
5323
+ logId?: string;
4664
5324
  /**
4665
5325
  * 页面名称
4666
5326
  *
@@ -4706,29 +5366,29 @@ export interface DetailPageResponse {
4706
5366
  */
4707
5367
  designerJson?: string;
4708
5368
  /**
4709
- * 是否为草稿 0: 非草稿 1: 草稿
5369
+ * 主键
4710
5370
  *
4711
- * @type number
5371
+ * @type string
4712
5372
  */
4713
- draft?: number;
5373
+ id?: string;
4714
5374
  /**
4715
- * 主键
5375
+ * 页面key
4716
5376
  *
4717
5377
  * @type string
4718
5378
  */
4719
- id?: string;
5379
+ key?: string;
4720
5380
  /**
4721
- * 初始提交 id
5381
+ * 锁定页面人员id
4722
5382
  *
4723
5383
  * @type string
4724
5384
  */
4725
- initCommitId?: string;
5385
+ lockUserId?: string;
4726
5386
  /**
4727
- * 页面key
5387
+ * 锁定页面人员名称
4728
5388
  *
4729
5389
  * @type string
4730
5390
  */
4731
- key?: string;
5391
+ lockUserName?: string;
4732
5392
  /**
4733
5393
  *
4734
5394
  *
@@ -4753,6 +5413,12 @@ export interface DetailPageResponse {
4753
5413
  * @type string
4754
5414
  */
4755
5415
  name?: string;
5416
+ /**
5417
+ * newLogId
5418
+ *
5419
+ * @type string
5420
+ */
5421
+ newLogId?: string;
4756
5422
  /**
4757
5423
  * 运行时json
4758
5424
  *
@@ -5725,6 +6391,12 @@ export interface DocControlTaskTodoResponse {
5725
6391
  * @type string
5726
6392
  */
5727
6393
  docVersionId?: string;
6394
+ /**
6395
+ * 表单类型:BASE 基础表单、PROCESS 流程表单、VIEW视图表单、TEXT文本表单
6396
+ *
6397
+ * @type string
6398
+ */
6399
+ formType?: string;
5728
6400
  /**
5729
6401
  * 主键
5730
6402
  *
@@ -5743,6 +6415,12 @@ export interface DocControlTaskTodoResponse {
5743
6415
  * @type string
5744
6416
  */
5745
6417
  initiatorName?: string;
6418
+ /**
6419
+ * 模型key
6420
+ *
6421
+ * @type string
6422
+ */
6423
+ modelKey?: string;
5746
6424
  /**
5747
6425
  *
5748
6426
  *
@@ -5761,6 +6439,12 @@ export interface DocControlTaskTodoResponse {
5761
6439
  * @type string
5762
6440
  */
5763
6441
  modifyUserName?: string;
6442
+ /**
6443
+ *
6444
+ *
6445
+ * @type string
6446
+ */
6447
+ officeType?: string;
5764
6448
  /**
5765
6449
  * 线下版本号
5766
6450
  *
@@ -6891,6 +7575,12 @@ export interface EdhrInstance {
6891
7575
  * @type string
6892
7576
  */
6893
7577
  productVersion?: string;
7578
+ /**
7579
+ *
7580
+ *
7581
+ * @type number
7582
+ */
7583
+ qty?: number;
6894
7584
  /**
6895
7585
  *
6896
7586
  *
@@ -7235,6 +7925,12 @@ export interface EdhrInstanceResponse {
7235
7925
  * @type string
7236
7926
  */
7237
7927
  productVersion?: string;
7928
+ /**
7929
+ * 数量
7930
+ *
7931
+ * @type number
7932
+ */
7933
+ qty?: number;
7238
7934
  /**
7239
7935
  * 流水号
7240
7936
  *
@@ -9689,6 +10385,12 @@ export interface FieldMeta {
9689
10385
  * @type number
9690
10386
  */
9691
10387
  backendOnly?: number;
10388
+ /**
10389
+ * 所属对象
10390
+ *
10391
+ * @type string
10392
+ */
10393
+ belongingObject?: string;
9692
10394
  /**
9693
10395
  * 主子关联 绑定子模型字段
9694
10396
  *
@@ -9917,6 +10619,12 @@ export interface FieldMetaDTO {
9917
10619
  * @type number
9918
10620
  */
9919
10621
  backendOnly?: number;
10622
+ /**
10623
+ * 所属对象
10624
+ *
10625
+ * @type string
10626
+ */
10627
+ belongingObject?: string;
9920
10628
  /**
9921
10629
  * 主子关联 绑定子模型字段
9922
10630
  *
@@ -10439,6 +11147,12 @@ export interface FieldMetaResponse {
10439
11147
  type?: string;
10440
11148
  }
10441
11149
  export interface FieldMetaVO {
11150
+ /**
11151
+ * 所属对象
11152
+ *
11153
+ * @type string
11154
+ */
11155
+ belongingObject?: string;
10442
11156
  /**
10443
11157
  * 主子关联 绑定子模型字段
10444
11158
  *
@@ -10621,12 +11335,24 @@ export interface FileResourceResponse {
10621
11335
  url?: string;
10622
11336
  }
10623
11337
  export interface FileTaskDTO {
11338
+ /**
11339
+ * eDHR类型(可选,为空时不细分)
11340
+ *
11341
+ * @type string
11342
+ */
11343
+ eDHRType?: string;
10624
11344
  /**
10625
11345
  * 是否包含半成品批次(当type为EDHR时使用,用于判断打印时是否需要打印半成品批次eDHR)
10626
11346
  *
10627
11347
  * @type boolean
10628
11348
  */
10629
11349
  includeSemi?: boolean;
11350
+ /**
11351
+ * eDHR列表-灭菌批/物料收检 批次
11352
+ *
11353
+ * @type string
11354
+ */
11355
+ materialNo?: string;
10630
11356
  /**
10631
11357
  * 模板实例id
10632
11358
  *
@@ -10965,6 +11691,12 @@ export interface FormTaskGetDTO {
10965
11691
  * @type string
10966
11692
  */
10967
11693
  relatedMaterialNo?: string;
11694
+ /**
11695
+ * 关联工单id
11696
+ *
11697
+ * @type string
11698
+ */
11699
+ relatedMfgOrderId?: string;
10968
11700
  /**
10969
11701
  * 流水号
10970
11702
  *
@@ -11139,6 +11871,12 @@ export interface GetAppResponse {
11139
11871
  * @type number
11140
11872
  */
11141
11873
  clear?: number;
11874
+ /**
11875
+ *
11876
+ *
11877
+ * @type string
11878
+ */
11879
+ clientSecret?: string;
11142
11880
  /**
11143
11881
  *
11144
11882
  *
@@ -11181,6 +11919,12 @@ export interface GetAppResponse {
11181
11919
  * @type string
11182
11920
  */
11183
11921
  initFailReason?: string;
11922
+ /**
11923
+ *
11924
+ *
11925
+ * @type string
11926
+ */
11927
+ lastVisitTime?: string;
11184
11928
  /**
11185
11929
  *
11186
11930
  *
@@ -11247,6 +11991,12 @@ export interface GetAppResponse {
11247
11991
  * @type string
11248
11992
  */
11249
11993
  name?: string;
11994
+ /**
11995
+ *
11996
+ *
11997
+ * @type string
11998
+ */
11999
+ oauth2Scope?: string;
11250
12000
  /**
11251
12001
  *
11252
12002
  *
@@ -11259,6 +12009,18 @@ export interface GetAppResponse {
11259
12009
  * @type string
11260
12010
  */
11261
12011
  pageIcon?: string;
12012
+ /**
12013
+ *
12014
+ *
12015
+ * @type boolean
12016
+ */
12017
+ pubProd?: boolean;
12018
+ /**
12019
+ *
12020
+ *
12021
+ * @type string
12022
+ */
12023
+ redirectUri?: string;
11262
12024
  /**
11263
12025
  *
11264
12026
  *
@@ -11319,6 +12081,18 @@ export interface GetAppResponse {
11319
12081
  * @type string
11320
12082
  */
11321
12083
  tenantId?: string;
12084
+ /**
12085
+ *
12086
+ *
12087
+ * @type string
12088
+ */
12089
+ testLastVisitTime?: string;
12090
+ /**
12091
+ *
12092
+ *
12093
+ * @type string
12094
+ */
12095
+ testRedirectUri?: string;
11322
12096
  /**
11323
12097
  *
11324
12098
  *
@@ -12108,6 +12882,12 @@ export interface InstanceRelationRequest {
12108
12882
  * @type string
12109
12883
  */
12110
12884
  module?: string;
12885
+ /**
12886
+ * 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
12887
+ *
12888
+ * @type string
12889
+ */
12890
+ relationObject?: string;
12111
12891
  /**
12112
12892
  * 来源批次号
12113
12893
  *
@@ -12194,6 +12974,12 @@ export interface InstanceRelationResponse {
12194
12974
  * @type string
12195
12975
  */
12196
12976
  module?: string;
12977
+ /**
12978
+ * 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
12979
+ *
12980
+ * @type string
12981
+ */
12982
+ relationObject?: string;
12197
12983
  /**
12198
12984
  * 来源批次号
12199
12985
  *
@@ -14866,38 +15652,6 @@ export interface MobilePageResponse {
14866
15652
  */
14867
15653
  terminal?: string;
14868
15654
  }
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
15655
  export interface ModelBriefInfo {
14902
15656
  /**
14903
15657
  * 种类
@@ -16499,6 +17253,12 @@ export interface OfProcessApproveRequest {
16499
17253
  * @type IObject
16500
17254
  */
16501
17255
  data?: IObject;
17256
+ /**
17257
+ * 下一审核节点范围人员(格式:USER:xxx,USER:xxx)
17258
+ *
17259
+ * @type string
17260
+ */
17261
+ nextApproveRangeUser?: string;
16502
17262
  /**
16503
17263
  * 是否不记录表单日志
16504
17264
  *
@@ -17033,6 +17793,12 @@ export interface OfProcessSubmitRequest {
17033
17793
  * @type OnlineFormChangeHistoryRequest
17034
17794
  */
17035
17795
  historyRequest?: OnlineFormChangeHistoryRequest;
17796
+ /**
17797
+ * 下一审核节点范围人员(格式:USER:xxx,USER:xxx)
17798
+ *
17799
+ * @type string
17800
+ */
17801
+ nextApproveRangeUser?: string;
17036
17802
  /**
17037
17803
  * 是否不记录表单日志
17038
17804
  *
@@ -17557,6 +18323,12 @@ export interface OnlineFormDataInitProtocolDTO {
17557
18323
  name?: string;
17558
18324
  }
17559
18325
  export interface OnlineFormDesignDTO {
18326
+ /**
18327
+ * 签名字段校验配置
18328
+ *
18329
+ * @type string
18330
+ */
18331
+ checkSignatureConfig?: string;
17560
18332
  /**
17561
18333
  * 通信配置
17562
18334
  *
@@ -17581,6 +18353,12 @@ export interface OnlineFormDesignDTO {
17581
18353
  * @type object[]
17582
18354
  */
17583
18355
  formTmplBomList?: object[];
18356
+ /**
18357
+ * 高度
18358
+ *
18359
+ * @type number
18360
+ */
18361
+ height?: number;
17584
18362
  /**
17585
18363
  * 修改时间
17586
18364
  *
@@ -17599,14 +18377,32 @@ export interface OnlineFormDesignDTO {
17599
18377
  * @type string
17600
18378
  */
17601
18379
  modifyUserName?: string;
18380
+ /**
18381
+ * 纸张大小
18382
+ *
18383
+ * @type string
18384
+ */
18385
+ paperSize?: string;
17602
18386
  /**
17603
18387
  * 运行时json
17604
18388
  *
17605
18389
  * @type string
17606
18390
  */
17607
18391
  runtimeJson?: string;
18392
+ /**
18393
+ * 宽度
18394
+ *
18395
+ * @type number
18396
+ */
18397
+ width?: number;
17608
18398
  }
17609
18399
  export interface OnlineFormFieldMetaVO {
18400
+ /**
18401
+ * 所属对象
18402
+ *
18403
+ * @type string
18404
+ */
18405
+ belongingObject?: string;
17610
18406
  /**
17611
18407
  * 主子关联 绑定子模型字段
17612
18408
  *
@@ -17717,6 +18513,12 @@ export interface OnlineFormInsTaskRequest {
17717
18513
  * @type string
17718
18514
  */
17719
18515
  formType?: string;
18516
+ /**
18517
+ * 关联工单id集合
18518
+ *
18519
+ * @type string[]
18520
+ */
18521
+ mfgOrderIds?: string[];
17720
18522
  /**
17721
18523
  * 模块类型
17722
18524
  *
@@ -17747,6 +18549,12 @@ export interface OnlineFormInsTaskRequest {
17747
18549
  * @type string[]
17748
18550
  */
17749
18551
  relatedMaterialNos?: string[];
18552
+ /**
18553
+ * 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
18554
+ *
18555
+ * @type string
18556
+ */
18557
+ relationObject?: string;
17750
18558
  /**
17751
18559
  * 任务标题
17752
18560
  *
@@ -17889,6 +18697,12 @@ export interface OnlineFormInstance {
17889
18697
  * @type string
17890
18698
  */
17891
18699
  docOutlineId?: string;
18700
+ /**
18701
+ *
18702
+ *
18703
+ * @type EdhrInstance
18704
+ */
18705
+ edhrInstance?: EdhrInstance;
17892
18706
  /**
17893
18707
  *
17894
18708
  *
@@ -18003,6 +18817,12 @@ export interface OnlineFormInstance {
18003
18817
  * @type string
18004
18818
  */
18005
18819
  instanceStatus?: string;
18820
+ /**
18821
+ *
18822
+ *
18823
+ * @type boolean
18824
+ */
18825
+ isRef?: boolean;
18006
18826
  /**
18007
18827
  *
18008
18828
  *
@@ -18141,6 +18961,18 @@ export interface OnlineFormInstance {
18141
18961
  * @type string[]
18142
18962
  */
18143
18963
  relatedMaterialNos?: string[];
18964
+ /**
18965
+ *
18966
+ *
18967
+ * @type string
18968
+ */
18969
+ relatedMfgOrderCodes?: string;
18970
+ /**
18971
+ *
18972
+ *
18973
+ * @type string[]
18974
+ */
18975
+ relatedMfgOrderIds?: string[];
18144
18976
  /**
18145
18977
  *
18146
18978
  *
@@ -18755,6 +19587,12 @@ export interface OnlineFormInstanceResponse {
18755
19587
  * @type string
18756
19588
  */
18757
19589
  instanceStatus?: string;
19590
+ /**
19591
+ * 是否是引用实例
19592
+ *
19593
+ * @type boolean
19594
+ */
19595
+ isRef?: boolean;
18758
19596
  /**
18759
19597
  * 物料编号
18760
19598
  *
@@ -18899,6 +19737,18 @@ export interface OnlineFormInstanceResponse {
18899
19737
  * @type string[]
18900
19738
  */
18901
19739
  relatedMaterialNos?: string[];
19740
+ /**
19741
+ * 关联工单code
19742
+ *
19743
+ * @type string
19744
+ */
19745
+ relatedMfgOrderCodes?: string;
19746
+ /**
19747
+ * 关联工单id集合
19748
+ *
19749
+ * @type string[]
19750
+ */
19751
+ relatedMfgOrderIds?: string[];
18902
19752
  /**
18903
19753
  * 关联id
18904
19754
  *
@@ -19413,6 +20263,12 @@ export interface OnlineFormTmplModelResponse {
19413
20263
  * @type string
19414
20264
  */
19415
20265
  categoryName?: string;
20266
+ /**
20267
+ * 签名字段校验配置
20268
+ *
20269
+ * @type string
20270
+ */
20271
+ checkSignatureConfig?: string;
19416
20272
  /**
19417
20273
  * 编号
19418
20274
  *
@@ -19875,6 +20731,12 @@ export interface OnlineFormTmplResponse {
19875
20731
  * @type string
19876
20732
  */
19877
20733
  categoryName?: string;
20734
+ /**
20735
+ * 签名字段校验配置
20736
+ *
20737
+ * @type string
20738
+ */
20739
+ checkSignatureConfig?: string;
19878
20740
  /**
19879
20741
  * 编号
19880
20742
  *
@@ -21697,6 +22559,18 @@ export interface PageDesignerLogResponse {
21697
22559
  * @type string
21698
22560
  */
21699
22561
  designerJson?: string;
22562
+ /**
22563
+ * 详情页设计Json
22564
+ *
22565
+ * @type string
22566
+ */
22567
+ detailDesignerJson?: string;
22568
+ /**
22569
+ * 详情页运行时json
22570
+ *
22571
+ * @type string
22572
+ */
22573
+ detailRuntimeJson?: string;
21700
22574
  /**
21701
22575
  * 主键
21702
22576
  *
@@ -22625,6 +23499,12 @@ export interface PrintAdapterDTO {
22625
23499
  * @type string
22626
23500
  */
22627
23501
  env?: string;
23502
+ /**
23503
+ * 打印控制参数
23504
+ *
23505
+ * @type IObject
23506
+ */
23507
+ param?: IObject;
22628
23508
  /**
22629
23509
  * 触发打印的应用id
22630
23510
  *
@@ -22755,6 +23635,12 @@ export interface PrintLogResponse {
22755
23635
  * @type string
22756
23636
  */
22757
23637
  modifyUserName?: string;
23638
+ /**
23639
+ * 打印控制参数
23640
+ *
23641
+ * @type IObject
23642
+ */
23643
+ param?: IObject;
22758
23644
  /**
22759
23645
  * 触发打印的应用id
22760
23646
  *
@@ -22925,6 +23811,12 @@ export interface PrintLogSearchRequest {
22925
23811
  * @type string
22926
23812
  */
22927
23813
  startTime?: string;
23814
+ /**
23815
+ * 标签名称
23816
+ *
23817
+ * @type string
23818
+ */
23819
+ tagName?: string;
22928
23820
  }
22929
23821
  export interface PrintPreviewResponse {
22930
23822
  /**
@@ -29055,6 +29947,12 @@ export interface ProductReleaseFormInstanctDTO {
29055
29947
  * @type string
29056
29948
  */
29057
29949
  docOutlineId?: string;
29950
+ /**
29951
+ *
29952
+ *
29953
+ * @type EdhrInstance
29954
+ */
29955
+ edhrInstance?: EdhrInstance;
29058
29956
  /**
29059
29957
  *
29060
29958
  *
@@ -29169,6 +30067,12 @@ export interface ProductReleaseFormInstanctDTO {
29169
30067
  * @type string
29170
30068
  */
29171
30069
  instanceStatus?: string;
30070
+ /**
30071
+ *
30072
+ *
30073
+ * @type boolean
30074
+ */
30075
+ isRef?: boolean;
29172
30076
  /**
29173
30077
  *
29174
30078
  *
@@ -29307,6 +30211,18 @@ export interface ProductReleaseFormInstanctDTO {
29307
30211
  * @type string[]
29308
30212
  */
29309
30213
  relatedMaterialNos?: string[];
30214
+ /**
30215
+ *
30216
+ *
30217
+ * @type string
30218
+ */
30219
+ relatedMfgOrderCodes?: string;
30220
+ /**
30221
+ *
30222
+ *
30223
+ * @type string[]
30224
+ */
30225
+ relatedMfgOrderIds?: string[];
29310
30226
  /**
29311
30227
  *
29312
30228
  *
@@ -33635,6 +34551,12 @@ export interface Sort {
33635
34551
  * @type string
33636
34552
  */
33637
34553
  sortType?: string;
34554
+ /**
34555
+ *
34556
+ *
34557
+ * @type string
34558
+ */
34559
+ table?: string;
33638
34560
  }
33639
34561
  export interface SqlViewModelRequest {
33640
34562
  /**
@@ -35267,6 +36189,12 @@ export interface TransactionRequest {
35267
36189
  * @type string
35268
36190
  */
35269
36191
  key?: string;
36192
+ /**
36193
+ * logId
36194
+ *
36195
+ * @type string
36196
+ */
36197
+ logId?: string;
35270
36198
  /**
35271
36199
  * 绑定模型key
35272
36200
  *
@@ -37888,75 +38816,93 @@ export interface XmlSettingTableColum {
37888
38816
  */
37889
38817
  type?: string;
37890
38818
  }
37891
- export interface modelDataAssociationRequest {
38819
+ export interface 发送消息DTO {
37892
38820
  /**
37893
- * fieldKey
38821
+ * 邮件内容
37894
38822
  *
37895
38823
  * @type string
37896
38824
  */
37897
- fieldKey?: string;
38825
+ content?: string;
37898
38826
  /**
37899
- * fieldType
37900
38827
  *
37901
- * @type string
37902
- */
37903
- fieldType?: string;
37904
- /**
37905
- * 数据id
37906
38828
  *
37907
38829
  * @type string
37908
38830
  */
37909
38831
  id?: string;
37910
38832
  /**
37911
- * modelKey
38833
+ * 接收人Id , 多个人员id用英文逗号隔开
37912
38834
  *
37913
38835
  * @type string
37914
38836
  */
37915
- modelKey?: string;
38837
+ receiveUserId?: string;
37916
38838
  /**
37917
- * 页码
38839
+ * 邮件标题
37918
38840
  *
37919
- * @type number
38841
+ * @type string
37920
38842
  */
37921
- pageNo?: number;
38843
+ title?: string;
37922
38844
  /**
37923
- * 分页大小
38845
+ * 目标客户端类型枚举 email 邮箱 dingtalk 钉钉 wecom 企业微信 feishu 飞书 system 站内信
37924
38846
  *
37925
- * @type number
38847
+ * @type string
37926
38848
  */
37927
- pageSize?: number;
38849
+ type?: string;
37928
38850
  }
37929
- export interface 发送消息DTO {
38851
+ export interface 批量添加表单模板请求 {
37930
38852
  /**
37931
- * 邮件内容
38853
+ * 分类ID
37932
38854
  *
37933
38855
  * @type string
37934
38856
  */
37935
- content?: string;
38857
+ categoryId?: string;
37936
38858
  /**
38859
+ * 表单模板信息列表
37937
38860
  *
38861
+ * @type 添加表单模板请求[]
38862
+ */
38863
+ formTmplInfos?: 添加表单模板请求[];
38864
+ }
38865
+ export interface 文件处理结果 {
38866
+ /**
38867
+ * 失败原因
37938
38868
  *
37939
38869
  * @type string
37940
38870
  */
37941
- id?: string;
38871
+ failReason?: string;
37942
38872
  /**
37943
- * 接收人Id , 多个人员id用英文逗号隔开
38873
+ * 文件名
37944
38874
  *
37945
38875
  * @type string
37946
38876
  */
37947
- receiveUserId?: string;
38877
+ fileName?: string;
37948
38878
  /**
37949
- * 邮件标题
38879
+ * 是否成功
37950
38880
  *
37951
- * @type string
38881
+ * @type boolean
37952
38882
  */
37953
- title?: string;
38883
+ success?: boolean;
37954
38884
  /**
37955
- * 目标客户端类型枚举 email 邮箱 dingtalk 钉钉 wecom 企业微信 feishu 飞书 system 站内信
38885
+ * 任务ID
37956
38886
  *
37957
38887
  * @type string
37958
38888
  */
37959
- type?: string;
38889
+ taskId?: string;
38890
+ }
38891
+ export interface 查询解压失败原因请求 {
38892
+ /**
38893
+ * 解压任务 ID 列表
38894
+ *
38895
+ * @type string[]
38896
+ */
38897
+ taskIds?: string[];
38898
+ }
38899
+ export interface 查询转换失败原因请求 {
38900
+ /**
38901
+ * 转换任务 ID 列表
38902
+ *
38903
+ * @type string[]
38904
+ */
38905
+ taskIds?: string[];
37960
38906
  }
37961
38907
  export interface 消息设置VO {
37962
38908
  /**
@@ -38056,3 +39002,141 @@ export interface 消息设置VO {
38056
39002
  */
38057
39003
  userName?: string;
38058
39004
  }
39005
+ export interface 添加表单模板请求 {
39006
+ /**
39007
+ * 分类ID
39008
+ *
39009
+ * @type string
39010
+ */
39011
+ categoryId?: string;
39012
+ /**
39013
+ * 是否默认版本
39014
+ *
39015
+ * @type boolean
39016
+ */
39017
+ defaulted?: boolean;
39018
+ /**
39019
+ * 表单名称
39020
+ *
39021
+ * @type string
39022
+ */
39023
+ formName?: string;
39024
+ /**
39025
+ * 表单模板ID(转换列表的form_tmpl_id_字段)
39026
+ *
39027
+ * @type string
39028
+ */
39029
+ formTmplId?: string;
39030
+ /**
39031
+ * 转换任务ID
39032
+ *
39033
+ * @type string
39034
+ */
39035
+ taskId?: string;
39036
+ /**
39037
+ * 版本值
39038
+ *
39039
+ * @type string
39040
+ */
39041
+ version?: string;
39042
+ }
39043
+ export interface 解压失败原因响应 {
39044
+ /**
39045
+ * 完成时间
39046
+ *
39047
+ * @type string
39048
+ */
39049
+ completeTime?: string;
39050
+ /**
39051
+ * 解压状态
39052
+ *
39053
+ * @type string
39054
+ */
39055
+ extractStatus?: string;
39056
+ /**
39057
+ * 解压状态描述
39058
+ *
39059
+ * @type string
39060
+ */
39061
+ extractStatusDesc?: string;
39062
+ /**
39063
+ * 失败原因
39064
+ *
39065
+ * @type string
39066
+ */
39067
+ failReason?: string;
39068
+ /**
39069
+ * 文件名
39070
+ *
39071
+ * @type string
39072
+ */
39073
+ fileName?: string;
39074
+ /**
39075
+ * 任务 ID
39076
+ *
39077
+ * @type string
39078
+ */
39079
+ taskId?: string;
39080
+ /**
39081
+ * 上传时间
39082
+ *
39083
+ * @type string
39084
+ */
39085
+ uploadTime?: string;
39086
+ }
39087
+ export interface 转换失败原因响应 {
39088
+ /**
39089
+ * 完成时间
39090
+ *
39091
+ * @type string
39092
+ */
39093
+ completeTime?: string;
39094
+ /**
39095
+ * 转换状态
39096
+ *
39097
+ * @type string
39098
+ */
39099
+ convertStatus?: string;
39100
+ /**
39101
+ * 转换状态描述
39102
+ *
39103
+ * @type string
39104
+ */
39105
+ convertStatusDesc?: string;
39106
+ /**
39107
+ * 失败原因
39108
+ *
39109
+ * @type string
39110
+ */
39111
+ failReason?: string;
39112
+ /**
39113
+ * 文件名
39114
+ *
39115
+ * @type string
39116
+ */
39117
+ fileName?: string;
39118
+ /**
39119
+ * 表单编码
39120
+ *
39121
+ * @type string
39122
+ */
39123
+ formCode?: string;
39124
+ /**
39125
+ * 表单名称
39126
+ *
39127
+ * @type string
39128
+ */
39129
+ formName?: string;
39130
+ /**
39131
+ * 任务 ID
39132
+ *
39133
+ * @type string
39134
+ */
39135
+ taskId?: string;
39136
+ /**
39137
+ * 上传时间
39138
+ *
39139
+ * @type string
39140
+ */
39141
+ uploadTime?: string;
39142
+ }