@gct-paas/api 6.0.0-dev.1 → 6.0.0-dev.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.min.js +1 -1
- package/es/apaas/service/api-config.mjs +99 -123
- package/es/apaas/service/apis/ai.service.d.ts +129 -0
- package/es/apaas/service/apis/alex-test.service.d.ts +16 -0
- package/es/apaas/service/apis/api.service.d.ts +35 -0
- package/es/apaas/service/apis/app-global-settings.service.d.ts +4 -0
- package/es/apaas/service/apis/app-granted-user.service.d.ts +21 -0
- package/es/apaas/service/apis/category.service.d.ts +8 -0
- package/es/apaas/service/apis/dhr.service.d.ts +4 -0
- package/es/apaas/service/apis/edhr-instance.service.d.ts +8 -0
- package/es/apaas/service/apis/field-meta.service.d.ts +8 -0
- package/es/apaas/service/apis/online-form-instance.service.d.ts +12 -45
- package/es/apaas/service/apis/online-form.service.d.ts +18 -0
- package/es/apaas/service/entities.d.ts +1292 -274
- package/es/apaas/service/index.d.ts +4 -4
- package/es/platform/service/api-config.mjs +82 -0
- package/es/platform/service/apis/api.service.d.ts +84 -0
- package/es/platform/service/apis/dashboard.service.d.ts +4 -0
- package/es/platform/service/apis/org.service.d.ts +4 -0
- package/es/platform/service/apis/tenant.service.d.ts +4 -0
- package/es/platform/service/apis/third-party-app.service.d.ts +73 -0
- package/es/platform/service/entities.d.ts +337 -1
- package/es/platform/service/index.d.ts +2 -0
- package/package.json +5 -5
|
@@ -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
|
*
|
|
@@ -5586,181 +6228,199 @@ export interface DocControlTaskDoneResponse {
|
|
|
5586
6228
|
*/
|
|
5587
6229
|
initiatorName?: string;
|
|
5588
6230
|
/**
|
|
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
|
-
*
|
|
6231
|
+
*
|
|
6232
|
+
*
|
|
6233
|
+
* @type string
|
|
6234
|
+
*/
|
|
6235
|
+
modifyTime?: string;
|
|
6236
|
+
/**
|
|
6237
|
+
*
|
|
6238
|
+
*
|
|
6239
|
+
* @type string
|
|
6240
|
+
*/
|
|
6241
|
+
modifyUserId?: string;
|
|
6242
|
+
/**
|
|
6243
|
+
*
|
|
6244
|
+
*
|
|
6245
|
+
* @type string
|
|
6246
|
+
*/
|
|
6247
|
+
modifyUserName?: string;
|
|
6248
|
+
/**
|
|
6249
|
+
* 线下版本号
|
|
6250
|
+
*
|
|
6251
|
+
* @type string
|
|
6252
|
+
*/
|
|
6253
|
+
offlineVersion?: string;
|
|
6254
|
+
/**
|
|
6255
|
+
* 流程实例id
|
|
6256
|
+
*
|
|
6257
|
+
* @type string
|
|
6258
|
+
*/
|
|
6259
|
+
processInstanceId?: string;
|
|
6260
|
+
/**
|
|
6261
|
+
* 提报时间
|
|
6262
|
+
*
|
|
6263
|
+
* @type string
|
|
6264
|
+
*/
|
|
6265
|
+
startTime?: string;
|
|
6266
|
+
/**
|
|
6267
|
+
* 任务结束时间
|
|
6268
|
+
*
|
|
6269
|
+
* @type string
|
|
6270
|
+
*/
|
|
6271
|
+
taskEndTime?: string;
|
|
6272
|
+
/**
|
|
6273
|
+
* 任务id
|
|
6274
|
+
*
|
|
6275
|
+
* @type string
|
|
6276
|
+
*/
|
|
6277
|
+
taskId?: string;
|
|
6278
|
+
/**
|
|
6279
|
+
* 任务开始时间
|
|
6280
|
+
*
|
|
6281
|
+
* @type string
|
|
6282
|
+
*/
|
|
6283
|
+
taskStartTime?: string;
|
|
6284
|
+
/**
|
|
6285
|
+
* 版本
|
|
6286
|
+
*
|
|
6287
|
+
* @type string
|
|
6288
|
+
*/
|
|
6289
|
+
version?: string;
|
|
6290
|
+
}
|
|
6291
|
+
export interface DocControlTaskTodoResponse {
|
|
6292
|
+
/**
|
|
6293
|
+
* 处理人ID
|
|
6294
|
+
*
|
|
6295
|
+
* @type string
|
|
6296
|
+
*/
|
|
6297
|
+
assigneeId?: string;
|
|
6298
|
+
/**
|
|
6299
|
+
* 处理人姓名
|
|
6300
|
+
*
|
|
6301
|
+
* @type string
|
|
6302
|
+
*/
|
|
6303
|
+
assigneeName?: string;
|
|
6304
|
+
/**
|
|
6305
|
+
* 分类名称
|
|
6306
|
+
*
|
|
6307
|
+
* @type string
|
|
6308
|
+
*/
|
|
6309
|
+
categoryName?: string;
|
|
6310
|
+
/**
|
|
6311
|
+
* 受控状态(UNCONTROLLED,RUNNING,CONTROLLED)
|
|
6312
|
+
*
|
|
6313
|
+
* @type string
|
|
6314
|
+
*/
|
|
6315
|
+
controlStatus?: string;
|
|
6316
|
+
/**
|
|
6317
|
+
* 受控文件类型:FORM表单模板、EDHR edhr模板
|
|
6318
|
+
*
|
|
6319
|
+
* @type string
|
|
6320
|
+
*/
|
|
6321
|
+
controlTmplType?: string;
|
|
6322
|
+
/**
|
|
6323
|
+
*
|
|
6324
|
+
*
|
|
6325
|
+
* @type string
|
|
6326
|
+
*/
|
|
6327
|
+
createTime?: string;
|
|
6328
|
+
/**
|
|
6329
|
+
*
|
|
6330
|
+
*
|
|
6331
|
+
* @type string
|
|
6332
|
+
*/
|
|
6333
|
+
createUserId?: string;
|
|
6334
|
+
/**
|
|
6335
|
+
*
|
|
6336
|
+
*
|
|
6337
|
+
* @type string
|
|
6338
|
+
*/
|
|
6339
|
+
createUserName?: string;
|
|
6340
|
+
/**
|
|
6341
|
+
* 受控文件(表单/edhr模板)BASE_ID
|
|
6342
|
+
*
|
|
6343
|
+
* @type string
|
|
6344
|
+
*/
|
|
6345
|
+
docBaseId?: string;
|
|
6346
|
+
/**
|
|
6347
|
+
* 受控文件版本编码(表单/edhr模板编号)
|
|
6348
|
+
*
|
|
6349
|
+
* @type string
|
|
6350
|
+
*/
|
|
6351
|
+
docCode?: string;
|
|
6352
|
+
/**
|
|
6353
|
+
* 文控管理-我的发起ID
|
|
6354
|
+
*
|
|
6355
|
+
* @type string
|
|
6356
|
+
*/
|
|
6357
|
+
docControlStartedId?: string;
|
|
6358
|
+
/**
|
|
6359
|
+
* 受控文件名称(表单/edhr模板名称)
|
|
6360
|
+
*
|
|
6361
|
+
* @type string
|
|
6362
|
+
*/
|
|
6363
|
+
docName?: string;
|
|
6364
|
+
/**
|
|
6365
|
+
* 受控文件版本id(表单/edhr模板id)
|
|
6366
|
+
*
|
|
6367
|
+
* @type string
|
|
6368
|
+
*/
|
|
6369
|
+
docVersionId?: string;
|
|
6370
|
+
/**
|
|
6371
|
+
* 表单类型:BASE 基础表单、PROCESS 流程表单、VIEW视图表单、TEXT文本表单
|
|
6372
|
+
*
|
|
6373
|
+
* @type string
|
|
6374
|
+
*/
|
|
6375
|
+
formType?: string;
|
|
6376
|
+
/**
|
|
6377
|
+
* 主键
|
|
6378
|
+
*
|
|
6379
|
+
* @type string
|
|
6380
|
+
*/
|
|
6381
|
+
id?: string;
|
|
6382
|
+
/**
|
|
6383
|
+
* 发起人iD
|
|
6384
|
+
*
|
|
6385
|
+
* @type string
|
|
6386
|
+
*/
|
|
6387
|
+
initiator?: string;
|
|
6388
|
+
/**
|
|
6389
|
+
* 发起人姓名
|
|
6390
|
+
*
|
|
6391
|
+
* @type string
|
|
6392
|
+
*/
|
|
6393
|
+
initiatorName?: string;
|
|
6394
|
+
/**
|
|
6395
|
+
* 模型key
|
|
5730
6396
|
*
|
|
5731
6397
|
* @type string
|
|
5732
6398
|
*/
|
|
5733
|
-
|
|
6399
|
+
modelKey?: string;
|
|
5734
6400
|
/**
|
|
5735
|
-
* 发起人iD
|
|
5736
6401
|
*
|
|
5737
|
-
* @type string
|
|
5738
|
-
*/
|
|
5739
|
-
initiator?: string;
|
|
5740
|
-
/**
|
|
5741
|
-
* 发起人姓名
|
|
5742
6402
|
*
|
|
5743
6403
|
* @type string
|
|
5744
6404
|
*/
|
|
5745
|
-
|
|
6405
|
+
modifyTime?: string;
|
|
5746
6406
|
/**
|
|
5747
6407
|
*
|
|
5748
6408
|
*
|
|
5749
6409
|
* @type string
|
|
5750
6410
|
*/
|
|
5751
|
-
|
|
6411
|
+
modifyUserId?: string;
|
|
5752
6412
|
/**
|
|
5753
6413
|
*
|
|
5754
6414
|
*
|
|
5755
6415
|
* @type string
|
|
5756
6416
|
*/
|
|
5757
|
-
|
|
6417
|
+
modifyUserName?: string;
|
|
5758
6418
|
/**
|
|
5759
6419
|
*
|
|
5760
6420
|
*
|
|
5761
6421
|
* @type string
|
|
5762
6422
|
*/
|
|
5763
|
-
|
|
6423
|
+
officeType?: string;
|
|
5764
6424
|
/**
|
|
5765
6425
|
* 线下版本号
|
|
5766
6426
|
*
|
|
@@ -6891,6 +7551,12 @@ export interface EdhrInstance {
|
|
|
6891
7551
|
* @type string
|
|
6892
7552
|
*/
|
|
6893
7553
|
productVersion?: string;
|
|
7554
|
+
/**
|
|
7555
|
+
*
|
|
7556
|
+
*
|
|
7557
|
+
* @type number
|
|
7558
|
+
*/
|
|
7559
|
+
qty?: number;
|
|
6894
7560
|
/**
|
|
6895
7561
|
*
|
|
6896
7562
|
*
|
|
@@ -7235,6 +7901,12 @@ export interface EdhrInstanceResponse {
|
|
|
7235
7901
|
* @type string
|
|
7236
7902
|
*/
|
|
7237
7903
|
productVersion?: string;
|
|
7904
|
+
/**
|
|
7905
|
+
* 数量
|
|
7906
|
+
*
|
|
7907
|
+
* @type number
|
|
7908
|
+
*/
|
|
7909
|
+
qty?: number;
|
|
7238
7910
|
/**
|
|
7239
7911
|
* 流水号
|
|
7240
7912
|
*
|
|
@@ -9689,6 +10361,12 @@ export interface FieldMeta {
|
|
|
9689
10361
|
* @type number
|
|
9690
10362
|
*/
|
|
9691
10363
|
backendOnly?: number;
|
|
10364
|
+
/**
|
|
10365
|
+
* 所属对象
|
|
10366
|
+
*
|
|
10367
|
+
* @type string
|
|
10368
|
+
*/
|
|
10369
|
+
belongingObject?: string;
|
|
9692
10370
|
/**
|
|
9693
10371
|
* 主子关联 绑定子模型字段
|
|
9694
10372
|
*
|
|
@@ -9917,6 +10595,12 @@ export interface FieldMetaDTO {
|
|
|
9917
10595
|
* @type number
|
|
9918
10596
|
*/
|
|
9919
10597
|
backendOnly?: number;
|
|
10598
|
+
/**
|
|
10599
|
+
* 所属对象
|
|
10600
|
+
*
|
|
10601
|
+
* @type string
|
|
10602
|
+
*/
|
|
10603
|
+
belongingObject?: string;
|
|
9920
10604
|
/**
|
|
9921
10605
|
* 主子关联 绑定子模型字段
|
|
9922
10606
|
*
|
|
@@ -10439,6 +11123,12 @@ export interface FieldMetaResponse {
|
|
|
10439
11123
|
type?: string;
|
|
10440
11124
|
}
|
|
10441
11125
|
export interface FieldMetaVO {
|
|
11126
|
+
/**
|
|
11127
|
+
* 所属对象
|
|
11128
|
+
*
|
|
11129
|
+
* @type string
|
|
11130
|
+
*/
|
|
11131
|
+
belongingObject?: string;
|
|
10442
11132
|
/**
|
|
10443
11133
|
* 主子关联 绑定子模型字段
|
|
10444
11134
|
*
|
|
@@ -10965,6 +11655,12 @@ export interface FormTaskGetDTO {
|
|
|
10965
11655
|
* @type string
|
|
10966
11656
|
*/
|
|
10967
11657
|
relatedMaterialNo?: string;
|
|
11658
|
+
/**
|
|
11659
|
+
* 关联工单id
|
|
11660
|
+
*
|
|
11661
|
+
* @type string
|
|
11662
|
+
*/
|
|
11663
|
+
relatedMfgOrderId?: string;
|
|
10968
11664
|
/**
|
|
10969
11665
|
* 流水号
|
|
10970
11666
|
*
|
|
@@ -11139,6 +11835,12 @@ export interface GetAppResponse {
|
|
|
11139
11835
|
* @type number
|
|
11140
11836
|
*/
|
|
11141
11837
|
clear?: number;
|
|
11838
|
+
/**
|
|
11839
|
+
*
|
|
11840
|
+
*
|
|
11841
|
+
* @type string
|
|
11842
|
+
*/
|
|
11843
|
+
clientSecret?: string;
|
|
11142
11844
|
/**
|
|
11143
11845
|
*
|
|
11144
11846
|
*
|
|
@@ -11247,6 +11949,12 @@ export interface GetAppResponse {
|
|
|
11247
11949
|
* @type string
|
|
11248
11950
|
*/
|
|
11249
11951
|
name?: string;
|
|
11952
|
+
/**
|
|
11953
|
+
*
|
|
11954
|
+
*
|
|
11955
|
+
* @type string
|
|
11956
|
+
*/
|
|
11957
|
+
oauth2Scope?: string;
|
|
11250
11958
|
/**
|
|
11251
11959
|
*
|
|
11252
11960
|
*
|
|
@@ -11259,6 +11967,18 @@ export interface GetAppResponse {
|
|
|
11259
11967
|
* @type string
|
|
11260
11968
|
*/
|
|
11261
11969
|
pageIcon?: string;
|
|
11970
|
+
/**
|
|
11971
|
+
*
|
|
11972
|
+
*
|
|
11973
|
+
* @type boolean
|
|
11974
|
+
*/
|
|
11975
|
+
pubProd?: boolean;
|
|
11976
|
+
/**
|
|
11977
|
+
*
|
|
11978
|
+
*
|
|
11979
|
+
* @type string
|
|
11980
|
+
*/
|
|
11981
|
+
redirectUri?: string;
|
|
11262
11982
|
/**
|
|
11263
11983
|
*
|
|
11264
11984
|
*
|
|
@@ -11319,6 +12039,12 @@ export interface GetAppResponse {
|
|
|
11319
12039
|
* @type string
|
|
11320
12040
|
*/
|
|
11321
12041
|
tenantId?: string;
|
|
12042
|
+
/**
|
|
12043
|
+
*
|
|
12044
|
+
*
|
|
12045
|
+
* @type string
|
|
12046
|
+
*/
|
|
12047
|
+
testRedirectUri?: string;
|
|
11322
12048
|
/**
|
|
11323
12049
|
*
|
|
11324
12050
|
*
|
|
@@ -12108,6 +12834,12 @@ export interface InstanceRelationRequest {
|
|
|
12108
12834
|
* @type string
|
|
12109
12835
|
*/
|
|
12110
12836
|
module?: string;
|
|
12837
|
+
/**
|
|
12838
|
+
* 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
|
|
12839
|
+
*
|
|
12840
|
+
* @type string
|
|
12841
|
+
*/
|
|
12842
|
+
relationObject?: string;
|
|
12111
12843
|
/**
|
|
12112
12844
|
* 来源批次号
|
|
12113
12845
|
*
|
|
@@ -12194,6 +12926,12 @@ export interface InstanceRelationResponse {
|
|
|
12194
12926
|
* @type string
|
|
12195
12927
|
*/
|
|
12196
12928
|
module?: string;
|
|
12929
|
+
/**
|
|
12930
|
+
* 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
|
|
12931
|
+
*
|
|
12932
|
+
* @type string
|
|
12933
|
+
*/
|
|
12934
|
+
relationObject?: string;
|
|
12197
12935
|
/**
|
|
12198
12936
|
* 来源批次号
|
|
12199
12937
|
*
|
|
@@ -14866,38 +15604,6 @@ export interface MobilePageResponse {
|
|
|
14866
15604
|
*/
|
|
14867
15605
|
terminal?: string;
|
|
14868
15606
|
}
|
|
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
15607
|
export interface ModelBriefInfo {
|
|
14902
15608
|
/**
|
|
14903
15609
|
* 种类
|
|
@@ -16499,6 +17205,12 @@ export interface OfProcessApproveRequest {
|
|
|
16499
17205
|
* @type IObject
|
|
16500
17206
|
*/
|
|
16501
17207
|
data?: IObject;
|
|
17208
|
+
/**
|
|
17209
|
+
* 下一审核节点范围人员(格式:USER:xxx,USER:xxx)
|
|
17210
|
+
*
|
|
17211
|
+
* @type string
|
|
17212
|
+
*/
|
|
17213
|
+
nextApproveRangeUser?: string;
|
|
16502
17214
|
/**
|
|
16503
17215
|
* 是否不记录表单日志
|
|
16504
17216
|
*
|
|
@@ -17033,6 +17745,12 @@ export interface OfProcessSubmitRequest {
|
|
|
17033
17745
|
* @type OnlineFormChangeHistoryRequest
|
|
17034
17746
|
*/
|
|
17035
17747
|
historyRequest?: OnlineFormChangeHistoryRequest;
|
|
17748
|
+
/**
|
|
17749
|
+
* 下一审核节点范围人员(格式:USER:xxx,USER:xxx)
|
|
17750
|
+
*
|
|
17751
|
+
* @type string
|
|
17752
|
+
*/
|
|
17753
|
+
nextApproveRangeUser?: string;
|
|
17036
17754
|
/**
|
|
17037
17755
|
* 是否不记录表单日志
|
|
17038
17756
|
*
|
|
@@ -17557,6 +18275,12 @@ export interface OnlineFormDataInitProtocolDTO {
|
|
|
17557
18275
|
name?: string;
|
|
17558
18276
|
}
|
|
17559
18277
|
export interface OnlineFormDesignDTO {
|
|
18278
|
+
/**
|
|
18279
|
+
* 签名字段校验配置
|
|
18280
|
+
*
|
|
18281
|
+
* @type string
|
|
18282
|
+
*/
|
|
18283
|
+
checkSignatureConfig?: string;
|
|
17560
18284
|
/**
|
|
17561
18285
|
* 通信配置
|
|
17562
18286
|
*
|
|
@@ -17581,6 +18305,12 @@ export interface OnlineFormDesignDTO {
|
|
|
17581
18305
|
* @type object[]
|
|
17582
18306
|
*/
|
|
17583
18307
|
formTmplBomList?: object[];
|
|
18308
|
+
/**
|
|
18309
|
+
* 高度
|
|
18310
|
+
*
|
|
18311
|
+
* @type number
|
|
18312
|
+
*/
|
|
18313
|
+
height?: number;
|
|
17584
18314
|
/**
|
|
17585
18315
|
* 修改时间
|
|
17586
18316
|
*
|
|
@@ -17599,14 +18329,32 @@ export interface OnlineFormDesignDTO {
|
|
|
17599
18329
|
* @type string
|
|
17600
18330
|
*/
|
|
17601
18331
|
modifyUserName?: string;
|
|
18332
|
+
/**
|
|
18333
|
+
* 纸张大小
|
|
18334
|
+
*
|
|
18335
|
+
* @type string
|
|
18336
|
+
*/
|
|
18337
|
+
paperSize?: string;
|
|
17602
18338
|
/**
|
|
17603
18339
|
* 运行时json
|
|
17604
18340
|
*
|
|
17605
18341
|
* @type string
|
|
17606
18342
|
*/
|
|
17607
18343
|
runtimeJson?: string;
|
|
18344
|
+
/**
|
|
18345
|
+
* 宽度
|
|
18346
|
+
*
|
|
18347
|
+
* @type number
|
|
18348
|
+
*/
|
|
18349
|
+
width?: number;
|
|
17608
18350
|
}
|
|
17609
18351
|
export interface OnlineFormFieldMetaVO {
|
|
18352
|
+
/**
|
|
18353
|
+
* 所属对象
|
|
18354
|
+
*
|
|
18355
|
+
* @type string
|
|
18356
|
+
*/
|
|
18357
|
+
belongingObject?: string;
|
|
17610
18358
|
/**
|
|
17611
18359
|
* 主子关联 绑定子模型字段
|
|
17612
18360
|
*
|
|
@@ -17717,6 +18465,12 @@ export interface OnlineFormInsTaskRequest {
|
|
|
17717
18465
|
* @type string
|
|
17718
18466
|
*/
|
|
17719
18467
|
formType?: string;
|
|
18468
|
+
/**
|
|
18469
|
+
* 关联工单id集合
|
|
18470
|
+
*
|
|
18471
|
+
* @type string[]
|
|
18472
|
+
*/
|
|
18473
|
+
mfgOrderIds?: string[];
|
|
17720
18474
|
/**
|
|
17721
18475
|
* 模块类型
|
|
17722
18476
|
*
|
|
@@ -17747,6 +18501,12 @@ export interface OnlineFormInsTaskRequest {
|
|
|
17747
18501
|
* @type string[]
|
|
17748
18502
|
*/
|
|
17749
18503
|
relatedMaterialNos?: string[];
|
|
18504
|
+
/**
|
|
18505
|
+
* 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
|
|
18506
|
+
*
|
|
18507
|
+
* @type string
|
|
18508
|
+
*/
|
|
18509
|
+
relationObject?: string;
|
|
17750
18510
|
/**
|
|
17751
18511
|
* 任务标题
|
|
17752
18512
|
*
|
|
@@ -17889,6 +18649,12 @@ export interface OnlineFormInstance {
|
|
|
17889
18649
|
* @type string
|
|
17890
18650
|
*/
|
|
17891
18651
|
docOutlineId?: string;
|
|
18652
|
+
/**
|
|
18653
|
+
*
|
|
18654
|
+
*
|
|
18655
|
+
* @type EdhrInstance
|
|
18656
|
+
*/
|
|
18657
|
+
edhrInstance?: EdhrInstance;
|
|
17892
18658
|
/**
|
|
17893
18659
|
*
|
|
17894
18660
|
*
|
|
@@ -18003,6 +18769,12 @@ export interface OnlineFormInstance {
|
|
|
18003
18769
|
* @type string
|
|
18004
18770
|
*/
|
|
18005
18771
|
instanceStatus?: string;
|
|
18772
|
+
/**
|
|
18773
|
+
*
|
|
18774
|
+
*
|
|
18775
|
+
* @type boolean
|
|
18776
|
+
*/
|
|
18777
|
+
isRef?: boolean;
|
|
18006
18778
|
/**
|
|
18007
18779
|
*
|
|
18008
18780
|
*
|
|
@@ -18141,6 +18913,18 @@ export interface OnlineFormInstance {
|
|
|
18141
18913
|
* @type string[]
|
|
18142
18914
|
*/
|
|
18143
18915
|
relatedMaterialNos?: string[];
|
|
18916
|
+
/**
|
|
18917
|
+
*
|
|
18918
|
+
*
|
|
18919
|
+
* @type string
|
|
18920
|
+
*/
|
|
18921
|
+
relatedMfgOrderCodes?: string;
|
|
18922
|
+
/**
|
|
18923
|
+
*
|
|
18924
|
+
*
|
|
18925
|
+
* @type string[]
|
|
18926
|
+
*/
|
|
18927
|
+
relatedMfgOrderIds?: string[];
|
|
18144
18928
|
/**
|
|
18145
18929
|
*
|
|
18146
18930
|
*
|
|
@@ -18755,6 +19539,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
18755
19539
|
* @type string
|
|
18756
19540
|
*/
|
|
18757
19541
|
instanceStatus?: string;
|
|
19542
|
+
/**
|
|
19543
|
+
* 是否是引用实例
|
|
19544
|
+
*
|
|
19545
|
+
* @type boolean
|
|
19546
|
+
*/
|
|
19547
|
+
isRef?: boolean;
|
|
18758
19548
|
/**
|
|
18759
19549
|
* 物料编号
|
|
18760
19550
|
*
|
|
@@ -18899,6 +19689,18 @@ export interface OnlineFormInstanceResponse {
|
|
|
18899
19689
|
* @type string[]
|
|
18900
19690
|
*/
|
|
18901
19691
|
relatedMaterialNos?: string[];
|
|
19692
|
+
/**
|
|
19693
|
+
* 关联工单code
|
|
19694
|
+
*
|
|
19695
|
+
* @type string
|
|
19696
|
+
*/
|
|
19697
|
+
relatedMfgOrderCodes?: string;
|
|
19698
|
+
/**
|
|
19699
|
+
* 关联工单id集合
|
|
19700
|
+
*
|
|
19701
|
+
* @type string[]
|
|
19702
|
+
*/
|
|
19703
|
+
relatedMfgOrderIds?: string[];
|
|
18902
19704
|
/**
|
|
18903
19705
|
* 关联id
|
|
18904
19706
|
*
|
|
@@ -19413,6 +20215,12 @@ export interface OnlineFormTmplModelResponse {
|
|
|
19413
20215
|
* @type string
|
|
19414
20216
|
*/
|
|
19415
20217
|
categoryName?: string;
|
|
20218
|
+
/**
|
|
20219
|
+
* 签名字段校验配置
|
|
20220
|
+
*
|
|
20221
|
+
* @type string
|
|
20222
|
+
*/
|
|
20223
|
+
checkSignatureConfig?: string;
|
|
19416
20224
|
/**
|
|
19417
20225
|
* 编号
|
|
19418
20226
|
*
|
|
@@ -19875,6 +20683,12 @@ export interface OnlineFormTmplResponse {
|
|
|
19875
20683
|
* @type string
|
|
19876
20684
|
*/
|
|
19877
20685
|
categoryName?: string;
|
|
20686
|
+
/**
|
|
20687
|
+
* 签名字段校验配置
|
|
20688
|
+
*
|
|
20689
|
+
* @type string
|
|
20690
|
+
*/
|
|
20691
|
+
checkSignatureConfig?: string;
|
|
19878
20692
|
/**
|
|
19879
20693
|
* 编号
|
|
19880
20694
|
*
|
|
@@ -22625,6 +23439,12 @@ export interface PrintAdapterDTO {
|
|
|
22625
23439
|
* @type string
|
|
22626
23440
|
*/
|
|
22627
23441
|
env?: string;
|
|
23442
|
+
/**
|
|
23443
|
+
* 打印控制参数
|
|
23444
|
+
*
|
|
23445
|
+
* @type IObject
|
|
23446
|
+
*/
|
|
23447
|
+
param?: IObject;
|
|
22628
23448
|
/**
|
|
22629
23449
|
* 触发打印的应用id
|
|
22630
23450
|
*
|
|
@@ -22755,6 +23575,12 @@ export interface PrintLogResponse {
|
|
|
22755
23575
|
* @type string
|
|
22756
23576
|
*/
|
|
22757
23577
|
modifyUserName?: string;
|
|
23578
|
+
/**
|
|
23579
|
+
* 打印控制参数
|
|
23580
|
+
*
|
|
23581
|
+
* @type IObject
|
|
23582
|
+
*/
|
|
23583
|
+
param?: IObject;
|
|
22758
23584
|
/**
|
|
22759
23585
|
* 触发打印的应用id
|
|
22760
23586
|
*
|
|
@@ -22925,6 +23751,12 @@ export interface PrintLogSearchRequest {
|
|
|
22925
23751
|
* @type string
|
|
22926
23752
|
*/
|
|
22927
23753
|
startTime?: string;
|
|
23754
|
+
/**
|
|
23755
|
+
* 标签名称
|
|
23756
|
+
*
|
|
23757
|
+
* @type string
|
|
23758
|
+
*/
|
|
23759
|
+
tagName?: string;
|
|
22928
23760
|
}
|
|
22929
23761
|
export interface PrintPreviewResponse {
|
|
22930
23762
|
/**
|
|
@@ -29055,6 +29887,12 @@ export interface ProductReleaseFormInstanctDTO {
|
|
|
29055
29887
|
* @type string
|
|
29056
29888
|
*/
|
|
29057
29889
|
docOutlineId?: string;
|
|
29890
|
+
/**
|
|
29891
|
+
*
|
|
29892
|
+
*
|
|
29893
|
+
* @type EdhrInstance
|
|
29894
|
+
*/
|
|
29895
|
+
edhrInstance?: EdhrInstance;
|
|
29058
29896
|
/**
|
|
29059
29897
|
*
|
|
29060
29898
|
*
|
|
@@ -29169,6 +30007,12 @@ export interface ProductReleaseFormInstanctDTO {
|
|
|
29169
30007
|
* @type string
|
|
29170
30008
|
*/
|
|
29171
30009
|
instanceStatus?: string;
|
|
30010
|
+
/**
|
|
30011
|
+
*
|
|
30012
|
+
*
|
|
30013
|
+
* @type boolean
|
|
30014
|
+
*/
|
|
30015
|
+
isRef?: boolean;
|
|
29172
30016
|
/**
|
|
29173
30017
|
*
|
|
29174
30018
|
*
|
|
@@ -29307,6 +30151,18 @@ export interface ProductReleaseFormInstanctDTO {
|
|
|
29307
30151
|
* @type string[]
|
|
29308
30152
|
*/
|
|
29309
30153
|
relatedMaterialNos?: string[];
|
|
30154
|
+
/**
|
|
30155
|
+
*
|
|
30156
|
+
*
|
|
30157
|
+
* @type string
|
|
30158
|
+
*/
|
|
30159
|
+
relatedMfgOrderCodes?: string;
|
|
30160
|
+
/**
|
|
30161
|
+
*
|
|
30162
|
+
*
|
|
30163
|
+
* @type string[]
|
|
30164
|
+
*/
|
|
30165
|
+
relatedMfgOrderIds?: string[];
|
|
29310
30166
|
/**
|
|
29311
30167
|
*
|
|
29312
30168
|
*
|
|
@@ -33635,6 +34491,12 @@ export interface Sort {
|
|
|
33635
34491
|
* @type string
|
|
33636
34492
|
*/
|
|
33637
34493
|
sortType?: string;
|
|
34494
|
+
/**
|
|
34495
|
+
*
|
|
34496
|
+
*
|
|
34497
|
+
* @type string
|
|
34498
|
+
*/
|
|
34499
|
+
table?: string;
|
|
33638
34500
|
}
|
|
33639
34501
|
export interface SqlViewModelRequest {
|
|
33640
34502
|
/**
|
|
@@ -37888,75 +38750,93 @@ export interface XmlSettingTableColum {
|
|
|
37888
38750
|
*/
|
|
37889
38751
|
type?: string;
|
|
37890
38752
|
}
|
|
37891
|
-
export interface
|
|
38753
|
+
export interface 发送消息DTO {
|
|
37892
38754
|
/**
|
|
37893
|
-
*
|
|
38755
|
+
* 邮件内容
|
|
37894
38756
|
*
|
|
37895
38757
|
* @type string
|
|
37896
38758
|
*/
|
|
37897
|
-
|
|
38759
|
+
content?: string;
|
|
37898
38760
|
/**
|
|
37899
|
-
* fieldType
|
|
37900
38761
|
*
|
|
37901
|
-
* @type string
|
|
37902
|
-
*/
|
|
37903
|
-
fieldType?: string;
|
|
37904
|
-
/**
|
|
37905
|
-
* 数据id
|
|
37906
38762
|
*
|
|
37907
38763
|
* @type string
|
|
37908
38764
|
*/
|
|
37909
38765
|
id?: string;
|
|
37910
38766
|
/**
|
|
37911
|
-
*
|
|
38767
|
+
* 接收人Id , 多个人员id用英文逗号隔开
|
|
37912
38768
|
*
|
|
37913
38769
|
* @type string
|
|
37914
38770
|
*/
|
|
37915
|
-
|
|
38771
|
+
receiveUserId?: string;
|
|
37916
38772
|
/**
|
|
37917
|
-
*
|
|
38773
|
+
* 邮件标题
|
|
37918
38774
|
*
|
|
37919
|
-
* @type
|
|
38775
|
+
* @type string
|
|
37920
38776
|
*/
|
|
37921
|
-
|
|
38777
|
+
title?: string;
|
|
37922
38778
|
/**
|
|
37923
|
-
*
|
|
38779
|
+
* 目标客户端类型枚举 email 邮箱 dingtalk 钉钉 wecom 企业微信 feishu 飞书 system 站内信
|
|
37924
38780
|
*
|
|
37925
|
-
* @type
|
|
38781
|
+
* @type string
|
|
37926
38782
|
*/
|
|
37927
|
-
|
|
38783
|
+
type?: string;
|
|
37928
38784
|
}
|
|
37929
|
-
export interface
|
|
38785
|
+
export interface 批量添加表单模板请求 {
|
|
37930
38786
|
/**
|
|
37931
|
-
*
|
|
38787
|
+
* 分类ID
|
|
37932
38788
|
*
|
|
37933
38789
|
* @type string
|
|
37934
38790
|
*/
|
|
37935
|
-
|
|
38791
|
+
categoryId?: string;
|
|
37936
38792
|
/**
|
|
38793
|
+
* 表单模板信息列表
|
|
37937
38794
|
*
|
|
38795
|
+
* @type 添加表单模板请求[]
|
|
38796
|
+
*/
|
|
38797
|
+
formTmplInfos?: 添加表单模板请求[];
|
|
38798
|
+
}
|
|
38799
|
+
export interface 文件处理结果 {
|
|
38800
|
+
/**
|
|
38801
|
+
* 失败原因
|
|
37938
38802
|
*
|
|
37939
38803
|
* @type string
|
|
37940
38804
|
*/
|
|
37941
|
-
|
|
38805
|
+
failReason?: string;
|
|
37942
38806
|
/**
|
|
37943
|
-
*
|
|
38807
|
+
* 文件名
|
|
37944
38808
|
*
|
|
37945
38809
|
* @type string
|
|
37946
38810
|
*/
|
|
37947
|
-
|
|
38811
|
+
fileName?: string;
|
|
37948
38812
|
/**
|
|
37949
|
-
*
|
|
38813
|
+
* 是否成功
|
|
37950
38814
|
*
|
|
37951
|
-
* @type
|
|
38815
|
+
* @type boolean
|
|
37952
38816
|
*/
|
|
37953
|
-
|
|
38817
|
+
success?: boolean;
|
|
37954
38818
|
/**
|
|
37955
|
-
*
|
|
38819
|
+
* 任务ID
|
|
37956
38820
|
*
|
|
37957
38821
|
* @type string
|
|
37958
38822
|
*/
|
|
37959
|
-
|
|
38823
|
+
taskId?: string;
|
|
38824
|
+
}
|
|
38825
|
+
export interface 查询解压失败原因请求 {
|
|
38826
|
+
/**
|
|
38827
|
+
* 解压任务 ID 列表
|
|
38828
|
+
*
|
|
38829
|
+
* @type string[]
|
|
38830
|
+
*/
|
|
38831
|
+
taskIds?: string[];
|
|
38832
|
+
}
|
|
38833
|
+
export interface 查询转换失败原因请求 {
|
|
38834
|
+
/**
|
|
38835
|
+
* 转换任务 ID 列表
|
|
38836
|
+
*
|
|
38837
|
+
* @type string[]
|
|
38838
|
+
*/
|
|
38839
|
+
taskIds?: string[];
|
|
37960
38840
|
}
|
|
37961
38841
|
export interface 消息设置VO {
|
|
37962
38842
|
/**
|
|
@@ -38056,3 +38936,141 @@ export interface 消息设置VO {
|
|
|
38056
38936
|
*/
|
|
38057
38937
|
userName?: string;
|
|
38058
38938
|
}
|
|
38939
|
+
export interface 添加表单模板请求 {
|
|
38940
|
+
/**
|
|
38941
|
+
* 分类ID
|
|
38942
|
+
*
|
|
38943
|
+
* @type string
|
|
38944
|
+
*/
|
|
38945
|
+
categoryId?: string;
|
|
38946
|
+
/**
|
|
38947
|
+
* 是否默认版本
|
|
38948
|
+
*
|
|
38949
|
+
* @type boolean
|
|
38950
|
+
*/
|
|
38951
|
+
defaulted?: boolean;
|
|
38952
|
+
/**
|
|
38953
|
+
* 表单名称
|
|
38954
|
+
*
|
|
38955
|
+
* @type string
|
|
38956
|
+
*/
|
|
38957
|
+
formName?: string;
|
|
38958
|
+
/**
|
|
38959
|
+
* 表单模板ID(转换列表的form_tmpl_id_字段)
|
|
38960
|
+
*
|
|
38961
|
+
* @type string
|
|
38962
|
+
*/
|
|
38963
|
+
formTmplId?: string;
|
|
38964
|
+
/**
|
|
38965
|
+
* 转换任务ID
|
|
38966
|
+
*
|
|
38967
|
+
* @type string
|
|
38968
|
+
*/
|
|
38969
|
+
taskId?: string;
|
|
38970
|
+
/**
|
|
38971
|
+
* 版本值
|
|
38972
|
+
*
|
|
38973
|
+
* @type string
|
|
38974
|
+
*/
|
|
38975
|
+
version?: string;
|
|
38976
|
+
}
|
|
38977
|
+
export interface 解压失败原因响应 {
|
|
38978
|
+
/**
|
|
38979
|
+
* 完成时间
|
|
38980
|
+
*
|
|
38981
|
+
* @type string
|
|
38982
|
+
*/
|
|
38983
|
+
completeTime?: string;
|
|
38984
|
+
/**
|
|
38985
|
+
* 解压状态
|
|
38986
|
+
*
|
|
38987
|
+
* @type string
|
|
38988
|
+
*/
|
|
38989
|
+
extractStatus?: string;
|
|
38990
|
+
/**
|
|
38991
|
+
* 解压状态描述
|
|
38992
|
+
*
|
|
38993
|
+
* @type string
|
|
38994
|
+
*/
|
|
38995
|
+
extractStatusDesc?: string;
|
|
38996
|
+
/**
|
|
38997
|
+
* 失败原因
|
|
38998
|
+
*
|
|
38999
|
+
* @type string
|
|
39000
|
+
*/
|
|
39001
|
+
failReason?: string;
|
|
39002
|
+
/**
|
|
39003
|
+
* 文件名
|
|
39004
|
+
*
|
|
39005
|
+
* @type string
|
|
39006
|
+
*/
|
|
39007
|
+
fileName?: string;
|
|
39008
|
+
/**
|
|
39009
|
+
* 任务 ID
|
|
39010
|
+
*
|
|
39011
|
+
* @type string
|
|
39012
|
+
*/
|
|
39013
|
+
taskId?: string;
|
|
39014
|
+
/**
|
|
39015
|
+
* 上传时间
|
|
39016
|
+
*
|
|
39017
|
+
* @type string
|
|
39018
|
+
*/
|
|
39019
|
+
uploadTime?: string;
|
|
39020
|
+
}
|
|
39021
|
+
export interface 转换失败原因响应 {
|
|
39022
|
+
/**
|
|
39023
|
+
* 完成时间
|
|
39024
|
+
*
|
|
39025
|
+
* @type string
|
|
39026
|
+
*/
|
|
39027
|
+
completeTime?: string;
|
|
39028
|
+
/**
|
|
39029
|
+
* 转换状态
|
|
39030
|
+
*
|
|
39031
|
+
* @type string
|
|
39032
|
+
*/
|
|
39033
|
+
convertStatus?: string;
|
|
39034
|
+
/**
|
|
39035
|
+
* 转换状态描述
|
|
39036
|
+
*
|
|
39037
|
+
* @type string
|
|
39038
|
+
*/
|
|
39039
|
+
convertStatusDesc?: string;
|
|
39040
|
+
/**
|
|
39041
|
+
* 失败原因
|
|
39042
|
+
*
|
|
39043
|
+
* @type string
|
|
39044
|
+
*/
|
|
39045
|
+
failReason?: string;
|
|
39046
|
+
/**
|
|
39047
|
+
* 文件名
|
|
39048
|
+
*
|
|
39049
|
+
* @type string
|
|
39050
|
+
*/
|
|
39051
|
+
fileName?: string;
|
|
39052
|
+
/**
|
|
39053
|
+
* 表单编码
|
|
39054
|
+
*
|
|
39055
|
+
* @type string
|
|
39056
|
+
*/
|
|
39057
|
+
formCode?: string;
|
|
39058
|
+
/**
|
|
39059
|
+
* 表单名称
|
|
39060
|
+
*
|
|
39061
|
+
* @type string
|
|
39062
|
+
*/
|
|
39063
|
+
formName?: string;
|
|
39064
|
+
/**
|
|
39065
|
+
* 任务 ID
|
|
39066
|
+
*
|
|
39067
|
+
* @type string
|
|
39068
|
+
*/
|
|
39069
|
+
taskId?: string;
|
|
39070
|
+
/**
|
|
39071
|
+
* 上传时间
|
|
39072
|
+
*
|
|
39073
|
+
* @type string
|
|
39074
|
+
*/
|
|
39075
|
+
uploadTime?: string;
|
|
39076
|
+
}
|