@gct-paas/api 6.0.0-dev.1 → 6.0.0-dev.11
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 +106 -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 +8 -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 +12 -0
- package/es/apaas/service/apis/excel.service.d.ts +0 -12
- package/es/apaas/service/apis/field-meta.service.d.ts +8 -0
- package/es/apaas/service/apis/online-form-instance.service.d.ts +16 -45
- package/es/apaas/service/apis/online-form.service.d.ts +18 -0
- package/es/apaas/service/apis/page-designer-log.service.d.ts +1 -1
- package/es/apaas/service/apis/transaction.service.d.ts +11 -0
- package/es/apaas/service/entities.d.ts +1526 -328
- package/es/apaas/service/index.d.ts +4 -4
- package/es/ipaas/service/api-config.mjs +381 -0
- package/es/ipaas/service/apis/app.service.d.ts +26 -0
- package/es/ipaas/service/apis/bff.service.d.ts +15 -0
- package/es/ipaas/service/apis/categories.service.d.ts +9 -0
- package/es/ipaas/service/apis/category.service.d.ts +33 -1
- package/es/ipaas/service/apis/file.service.d.ts +17 -0
- package/es/ipaas/service/apis/flow.service.d.ts +234 -1
- package/es/ipaas/service/apis/knowledge.service.d.ts +196 -0
- package/es/ipaas/service/apis/variable-def.service.d.ts +87 -0
- package/es/ipaas/service/apis/variable-inst.service.d.ts +63 -0
- package/es/ipaas/service/entities.d.ts +1386 -37
- package/es/ipaas/service/index.d.ts +14 -0
- package/es/platform/service/api-config.mjs +145 -4
- package/es/platform/service/apis/api.service.d.ts +98 -1
- package/es/platform/service/apis/app.service.d.ts +26 -0
- package/es/platform/service/apis/license.service.d.ts +10 -1
- package/es/platform/service/apis/ocr-model.service.d.ts +87 -0
- package/es/platform/service/apis/third-party-app.service.d.ts +110 -0
- package/es/platform/service/entities.d.ts +529 -1
- package/es/platform/service/index.d.ts +4 -0
- package/es/service/api-service.interface.d.ts +9 -0
- package/es/service/http.error.mjs +3 -0
- package/es/service/index.mjs +2 -0
- package/package.json +5 -5
- package/es/apaas/service/apis/med-pro.service.d.ts +0 -76
- package/es/apaas/service/apis/medPro.service.d.ts +0 -184
- 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
|
*
|
|
@@ -3532,251 +4242,43 @@ export interface CustomerComplaintRequest {
|
|
|
3532
4242
|
*/
|
|
3533
4243
|
udi?: string;
|
|
3534
4244
|
}
|
|
3535
|
-
export interface CustomerComplaintResponse {
|
|
3536
|
-
/**
|
|
3537
|
-
* 抱怨地址
|
|
3538
|
-
*
|
|
3539
|
-
* @type string
|
|
3540
|
-
*/
|
|
3541
|
-
address?: string;
|
|
3542
|
-
/**
|
|
3543
|
-
* 是否启动不良事件程序
|
|
3544
|
-
*
|
|
3545
|
-
* @type string
|
|
3546
|
-
*/
|
|
3547
|
-
adverseProcedure?: string;
|
|
3548
|
-
/**
|
|
3549
|
-
* 抱怨附件信息
|
|
3550
|
-
*
|
|
3551
|
-
* @type string
|
|
3552
|
-
*/
|
|
3553
|
-
attachment?: string;
|
|
3554
|
-
/**
|
|
3555
|
-
* 批号
|
|
3556
|
-
*
|
|
3557
|
-
* @type string
|
|
3558
|
-
*/
|
|
3559
|
-
batchNumber?: string;
|
|
3560
|
-
/**
|
|
3561
|
-
* 抱怨数量
|
|
3562
|
-
*
|
|
3563
|
-
* @type string
|
|
3564
|
-
*/
|
|
3565
|
-
complaintCount?: string;
|
|
3566
|
-
/**
|
|
3567
|
-
* 联系方式
|
|
3568
|
-
*
|
|
3569
|
-
* @type string
|
|
3570
|
-
*/
|
|
3571
|
-
contact?: string;
|
|
3572
|
-
/**
|
|
3573
|
-
*
|
|
3574
|
-
*
|
|
3575
|
-
* @type string
|
|
3576
|
-
*/
|
|
3577
|
-
createTime?: string;
|
|
3578
|
-
/**
|
|
3579
|
-
*
|
|
3580
|
-
*
|
|
3581
|
-
* @type string
|
|
3582
|
-
*/
|
|
3583
|
-
createUserId?: string;
|
|
3584
|
-
/**
|
|
3585
|
-
*
|
|
3586
|
-
*
|
|
3587
|
-
* @type string
|
|
3588
|
-
*/
|
|
3589
|
-
createUserName?: string;
|
|
3590
|
-
/**
|
|
3591
|
-
* 抱怨描述
|
|
3592
|
-
*
|
|
3593
|
-
* @type string
|
|
3594
|
-
*/
|
|
3595
|
-
description?: string;
|
|
3596
|
-
/**
|
|
3597
|
-
* 致死
|
|
3598
|
-
*
|
|
3599
|
-
* @type string
|
|
3600
|
-
*/
|
|
3601
|
-
fatal?: string;
|
|
3602
|
-
/**
|
|
3603
|
-
* 第一次使用
|
|
3604
|
-
*
|
|
3605
|
-
* @type string
|
|
3606
|
-
*/
|
|
3607
|
-
firsttimeUse?: string;
|
|
3608
|
-
/**
|
|
3609
|
-
* 主键
|
|
3610
|
-
*
|
|
3611
|
-
* @type string
|
|
3612
|
-
*/
|
|
3613
|
-
id?: string;
|
|
3614
|
-
/**
|
|
3615
|
-
* 实例Id
|
|
3616
|
-
*
|
|
3617
|
-
* @type string
|
|
3618
|
-
*/
|
|
3619
|
-
instanceId?: string;
|
|
3620
|
-
/**
|
|
3621
|
-
* 采取措施避免损伤
|
|
3622
|
-
*
|
|
3623
|
-
* @type string
|
|
3624
|
-
*/
|
|
3625
|
-
measuresAvoidDamage?: string;
|
|
3626
|
-
/**
|
|
3627
|
-
*
|
|
3628
|
-
*
|
|
3629
|
-
* @type string
|
|
3630
|
-
*/
|
|
3631
|
-
modifyTime?: string;
|
|
3632
|
-
/**
|
|
3633
|
-
*
|
|
3634
|
-
*
|
|
3635
|
-
* @type string
|
|
3636
|
-
*/
|
|
3637
|
-
modifyUserId?: string;
|
|
3638
|
-
/**
|
|
3639
|
-
*
|
|
3640
|
-
*
|
|
3641
|
-
* @type string
|
|
3642
|
-
*/
|
|
3643
|
-
modifyUserName?: string;
|
|
3644
|
-
/**
|
|
3645
|
-
* 抱怨发生时刻
|
|
3646
|
-
*
|
|
3647
|
-
* @type string
|
|
3648
|
-
*/
|
|
3649
|
-
occurrenceTime?: string;
|
|
3650
|
-
/**
|
|
3651
|
-
* 其他信息
|
|
3652
|
-
*
|
|
3653
|
-
* @type string
|
|
3654
|
-
*/
|
|
3655
|
-
otherInfo?: string;
|
|
3656
|
-
/**
|
|
3657
|
-
* 病人情况
|
|
3658
|
-
*
|
|
3659
|
-
* @type string
|
|
3660
|
-
*/
|
|
3661
|
-
patientCondition?: string;
|
|
3662
|
-
/**
|
|
3663
|
-
* 抱怨人
|
|
3664
|
-
*
|
|
3665
|
-
* @type string
|
|
3666
|
-
*/
|
|
3667
|
-
person?: string;
|
|
3668
|
-
/**
|
|
3669
|
-
* 产品名称
|
|
3670
|
-
*
|
|
3671
|
-
* @type string
|
|
3672
|
-
*/
|
|
3673
|
-
productName?: string;
|
|
3674
|
-
/**
|
|
3675
|
-
* 抱怨接收日期
|
|
3676
|
-
*
|
|
3677
|
-
* @type string
|
|
3678
|
-
*/
|
|
3679
|
-
receiveDate?: string;
|
|
3680
|
-
/**
|
|
3681
|
-
* 记录Id
|
|
3682
|
-
*
|
|
3683
|
-
* @type string
|
|
3684
|
-
*/
|
|
3685
|
-
recordId?: string;
|
|
3686
|
-
/**
|
|
3687
|
-
* 抱怨地区
|
|
3688
|
-
*
|
|
3689
|
-
* @type string
|
|
3690
|
-
*/
|
|
3691
|
-
region?: string;
|
|
3692
|
-
/**
|
|
3693
|
-
* 重复使用
|
|
3694
|
-
*
|
|
3695
|
-
* @type string
|
|
3696
|
-
*/
|
|
3697
|
-
repeatUse?: string;
|
|
3698
|
-
/**
|
|
3699
|
-
* 报告地址
|
|
3700
|
-
*
|
|
3701
|
-
* @type string
|
|
3702
|
-
*/
|
|
3703
|
-
reportUrl?: string;
|
|
3704
|
-
/**
|
|
3705
|
-
* 严重损伤
|
|
3706
|
-
*
|
|
3707
|
-
* @type string
|
|
3708
|
-
*/
|
|
3709
|
-
severeLoss?: string;
|
|
3710
|
-
/**
|
|
3711
|
-
* 来源
|
|
3712
|
-
*
|
|
3713
|
-
* @type string
|
|
3714
|
-
*/
|
|
3715
|
-
source?: string;
|
|
3716
|
-
/**
|
|
3717
|
-
* 规格型号
|
|
3718
|
-
*
|
|
3719
|
-
* @type string
|
|
3720
|
-
*/
|
|
3721
|
-
specificationModel?: string;
|
|
3722
|
-
/**
|
|
3723
|
-
* 状态
|
|
3724
|
-
*
|
|
3725
|
-
* @type number
|
|
3726
|
-
*/
|
|
3727
|
-
status?: number;
|
|
3728
|
-
/**
|
|
3729
|
-
* 是否同步
|
|
3730
|
-
*
|
|
3731
|
-
* @type number
|
|
3732
|
-
*/
|
|
3733
|
-
synced?: number;
|
|
3734
|
-
/**
|
|
3735
|
-
* UDI
|
|
3736
|
-
*
|
|
3737
|
-
* @type string
|
|
3738
|
-
*/
|
|
3739
|
-
udi?: string;
|
|
3740
|
-
}
|
|
3741
|
-
export interface DashboardRequest {
|
|
4245
|
+
export interface CustomerComplaintResponse {
|
|
3742
4246
|
/**
|
|
3743
|
-
*
|
|
4247
|
+
* 抱怨地址
|
|
3744
4248
|
*
|
|
3745
4249
|
* @type string
|
|
3746
4250
|
*/
|
|
3747
|
-
|
|
4251
|
+
address?: string;
|
|
3748
4252
|
/**
|
|
3749
|
-
*
|
|
4253
|
+
* 是否启动不良事件程序
|
|
3750
4254
|
*
|
|
3751
4255
|
* @type string
|
|
3752
4256
|
*/
|
|
3753
|
-
|
|
4257
|
+
adverseProcedure?: string;
|
|
3754
4258
|
/**
|
|
3755
|
-
*
|
|
4259
|
+
* 抱怨附件信息
|
|
3756
4260
|
*
|
|
3757
|
-
* @type
|
|
4261
|
+
* @type string
|
|
3758
4262
|
*/
|
|
3759
|
-
|
|
4263
|
+
attachment?: string;
|
|
3760
4264
|
/**
|
|
3761
|
-
*
|
|
4265
|
+
* 批号
|
|
3762
4266
|
*
|
|
3763
|
-
* @type
|
|
4267
|
+
* @type string
|
|
3764
4268
|
*/
|
|
3765
|
-
|
|
4269
|
+
batchNumber?: string;
|
|
3766
4270
|
/**
|
|
3767
|
-
*
|
|
4271
|
+
* 抱怨数量
|
|
3768
4272
|
*
|
|
3769
|
-
* @type
|
|
4273
|
+
* @type string
|
|
3770
4274
|
*/
|
|
3771
|
-
|
|
3772
|
-
}
|
|
3773
|
-
export interface DashboardResponse {
|
|
4275
|
+
complaintCount?: string;
|
|
3774
4276
|
/**
|
|
3775
|
-
*
|
|
4277
|
+
* 联系方式
|
|
3776
4278
|
*
|
|
3777
4279
|
* @type string
|
|
3778
4280
|
*/
|
|
3779
|
-
|
|
4281
|
+
contact?: string;
|
|
3780
4282
|
/**
|
|
3781
4283
|
*
|
|
3782
4284
|
*
|
|
@@ -3796,11 +4298,41 @@ export interface DashboardResponse {
|
|
|
3796
4298
|
*/
|
|
3797
4299
|
createUserName?: string;
|
|
3798
4300
|
/**
|
|
3799
|
-
*
|
|
4301
|
+
* 抱怨描述
|
|
4302
|
+
*
|
|
4303
|
+
* @type string
|
|
4304
|
+
*/
|
|
4305
|
+
description?: string;
|
|
4306
|
+
/**
|
|
4307
|
+
* 致死
|
|
4308
|
+
*
|
|
4309
|
+
* @type string
|
|
4310
|
+
*/
|
|
4311
|
+
fatal?: string;
|
|
4312
|
+
/**
|
|
4313
|
+
* 第一次使用
|
|
4314
|
+
*
|
|
4315
|
+
* @type string
|
|
4316
|
+
*/
|
|
4317
|
+
firsttimeUse?: string;
|
|
4318
|
+
/**
|
|
4319
|
+
* 主键
|
|
3800
4320
|
*
|
|
3801
4321
|
* @type string
|
|
3802
4322
|
*/
|
|
3803
4323
|
id?: string;
|
|
4324
|
+
/**
|
|
4325
|
+
* 实例Id
|
|
4326
|
+
*
|
|
4327
|
+
* @type string
|
|
4328
|
+
*/
|
|
4329
|
+
instanceId?: string;
|
|
4330
|
+
/**
|
|
4331
|
+
* 采取措施避免损伤
|
|
4332
|
+
*
|
|
4333
|
+
* @type string
|
|
4334
|
+
*/
|
|
4335
|
+
measuresAvoidDamage?: string;
|
|
3804
4336
|
/**
|
|
3805
4337
|
*
|
|
3806
4338
|
*
|
|
@@ -3819,6 +4351,110 @@ export interface DashboardResponse {
|
|
|
3819
4351
|
* @type string
|
|
3820
4352
|
*/
|
|
3821
4353
|
modifyUserName?: string;
|
|
4354
|
+
/**
|
|
4355
|
+
* 抱怨发生时刻
|
|
4356
|
+
*
|
|
4357
|
+
* @type string
|
|
4358
|
+
*/
|
|
4359
|
+
occurrenceTime?: string;
|
|
4360
|
+
/**
|
|
4361
|
+
* 其他信息
|
|
4362
|
+
*
|
|
4363
|
+
* @type string
|
|
4364
|
+
*/
|
|
4365
|
+
otherInfo?: string;
|
|
4366
|
+
/**
|
|
4367
|
+
* 病人情况
|
|
4368
|
+
*
|
|
4369
|
+
* @type string
|
|
4370
|
+
*/
|
|
4371
|
+
patientCondition?: string;
|
|
4372
|
+
/**
|
|
4373
|
+
* 抱怨人
|
|
4374
|
+
*
|
|
4375
|
+
* @type string
|
|
4376
|
+
*/
|
|
4377
|
+
person?: string;
|
|
4378
|
+
/**
|
|
4379
|
+
* 产品名称
|
|
4380
|
+
*
|
|
4381
|
+
* @type string
|
|
4382
|
+
*/
|
|
4383
|
+
productName?: string;
|
|
4384
|
+
/**
|
|
4385
|
+
* 抱怨接收日期
|
|
4386
|
+
*
|
|
4387
|
+
* @type string
|
|
4388
|
+
*/
|
|
4389
|
+
receiveDate?: string;
|
|
4390
|
+
/**
|
|
4391
|
+
* 记录Id
|
|
4392
|
+
*
|
|
4393
|
+
* @type string
|
|
4394
|
+
*/
|
|
4395
|
+
recordId?: string;
|
|
4396
|
+
/**
|
|
4397
|
+
* 抱怨地区
|
|
4398
|
+
*
|
|
4399
|
+
* @type string
|
|
4400
|
+
*/
|
|
4401
|
+
region?: string;
|
|
4402
|
+
/**
|
|
4403
|
+
* 重复使用
|
|
4404
|
+
*
|
|
4405
|
+
* @type string
|
|
4406
|
+
*/
|
|
4407
|
+
repeatUse?: string;
|
|
4408
|
+
/**
|
|
4409
|
+
* 报告地址
|
|
4410
|
+
*
|
|
4411
|
+
* @type string
|
|
4412
|
+
*/
|
|
4413
|
+
reportUrl?: string;
|
|
4414
|
+
/**
|
|
4415
|
+
* 严重损伤
|
|
4416
|
+
*
|
|
4417
|
+
* @type string
|
|
4418
|
+
*/
|
|
4419
|
+
severeLoss?: string;
|
|
4420
|
+
/**
|
|
4421
|
+
* 来源
|
|
4422
|
+
*
|
|
4423
|
+
* @type string
|
|
4424
|
+
*/
|
|
4425
|
+
source?: string;
|
|
4426
|
+
/**
|
|
4427
|
+
* 规格型号
|
|
4428
|
+
*
|
|
4429
|
+
* @type string
|
|
4430
|
+
*/
|
|
4431
|
+
specificationModel?: string;
|
|
4432
|
+
/**
|
|
4433
|
+
* 状态
|
|
4434
|
+
*
|
|
4435
|
+
* @type number
|
|
4436
|
+
*/
|
|
4437
|
+
status?: number;
|
|
4438
|
+
/**
|
|
4439
|
+
* 是否同步
|
|
4440
|
+
*
|
|
4441
|
+
* @type number
|
|
4442
|
+
*/
|
|
4443
|
+
synced?: number;
|
|
4444
|
+
/**
|
|
4445
|
+
* UDI
|
|
4446
|
+
*
|
|
4447
|
+
* @type string
|
|
4448
|
+
*/
|
|
4449
|
+
udi?: string;
|
|
4450
|
+
}
|
|
4451
|
+
export interface DashboardRequest {
|
|
4452
|
+
/**
|
|
4453
|
+
* 仪表盘配置详情
|
|
4454
|
+
*
|
|
4455
|
+
* @type string
|
|
4456
|
+
*/
|
|
4457
|
+
config?: string;
|
|
3822
4458
|
/**
|
|
3823
4459
|
* 名称
|
|
3824
4460
|
*
|
|
@@ -3844,81 +4480,93 @@ export interface DashboardResponse {
|
|
|
3844
4480
|
*/
|
|
3845
4481
|
status?: number;
|
|
3846
4482
|
}
|
|
3847
|
-
export interface
|
|
4483
|
+
export interface DashboardResponse {
|
|
3848
4484
|
/**
|
|
3849
|
-
*
|
|
4485
|
+
* 仪表盘配置详情
|
|
3850
4486
|
*
|
|
3851
4487
|
* @type string
|
|
3852
4488
|
*/
|
|
3853
|
-
|
|
4489
|
+
config?: string;
|
|
3854
4490
|
/**
|
|
3855
|
-
* 目标位置排序号
|
|
3856
4491
|
*
|
|
3857
|
-
*
|
|
4492
|
+
*
|
|
4493
|
+
* @type string
|
|
3858
4494
|
*/
|
|
3859
|
-
|
|
3860
|
-
}
|
|
3861
|
-
export interface DataCollectionInstanceAbandonRequest {
|
|
4495
|
+
createTime?: string;
|
|
3862
4496
|
/**
|
|
3863
|
-
*
|
|
4497
|
+
*
|
|
3864
4498
|
*
|
|
3865
4499
|
* @type string
|
|
3866
4500
|
*/
|
|
3867
|
-
|
|
4501
|
+
createUserId?: string;
|
|
3868
4502
|
/**
|
|
3869
|
-
*
|
|
4503
|
+
*
|
|
3870
4504
|
*
|
|
3871
4505
|
* @type string
|
|
3872
4506
|
*/
|
|
3873
|
-
|
|
4507
|
+
createUserName?: string;
|
|
3874
4508
|
/**
|
|
3875
|
-
*
|
|
4509
|
+
* id
|
|
3876
4510
|
*
|
|
3877
|
-
* @type string
|
|
4511
|
+
* @type string
|
|
3878
4512
|
*/
|
|
3879
|
-
|
|
4513
|
+
id?: string;
|
|
3880
4514
|
/**
|
|
3881
|
-
*
|
|
4515
|
+
*
|
|
3882
4516
|
*
|
|
3883
4517
|
* @type string
|
|
3884
4518
|
*/
|
|
3885
|
-
|
|
3886
|
-
}
|
|
3887
|
-
export interface DataCollectionOnlineFormInstanceRequest {
|
|
4519
|
+
modifyTime?: string;
|
|
3888
4520
|
/**
|
|
3889
|
-
*
|
|
4521
|
+
*
|
|
3890
4522
|
*
|
|
3891
4523
|
* @type string
|
|
3892
4524
|
*/
|
|
3893
|
-
|
|
4525
|
+
modifyUserId?: string;
|
|
3894
4526
|
/**
|
|
3895
|
-
*
|
|
4527
|
+
*
|
|
3896
4528
|
*
|
|
3897
4529
|
* @type string
|
|
3898
4530
|
*/
|
|
3899
|
-
|
|
3900
|
-
}
|
|
3901
|
-
export interface DataCollectionOnlineFormInstanceUpdateRequest {
|
|
4531
|
+
modifyUserName?: string;
|
|
3902
4532
|
/**
|
|
3903
|
-
*
|
|
4533
|
+
* 名称
|
|
3904
4534
|
*
|
|
3905
4535
|
* @type string
|
|
3906
4536
|
*/
|
|
3907
|
-
|
|
4537
|
+
name?: string;
|
|
3908
4538
|
/**
|
|
3909
|
-
*
|
|
4539
|
+
* 排序号
|
|
3910
4540
|
*
|
|
3911
|
-
* @type
|
|
4541
|
+
* @type number
|
|
3912
4542
|
*/
|
|
3913
|
-
|
|
4543
|
+
sortNum?: number;
|
|
4544
|
+
/**
|
|
4545
|
+
* 仪表盘来源
|
|
4546
|
+
*
|
|
4547
|
+
* @type number
|
|
4548
|
+
*/
|
|
4549
|
+
source?: number;
|
|
4550
|
+
/**
|
|
4551
|
+
* 状态
|
|
4552
|
+
*
|
|
4553
|
+
* @type number
|
|
4554
|
+
*/
|
|
4555
|
+
status?: number;
|
|
3914
4556
|
}
|
|
3915
|
-
export interface
|
|
4557
|
+
export interface DashboardSortRequest {
|
|
3916
4558
|
/**
|
|
3917
|
-
*
|
|
4559
|
+
* 看板id主键
|
|
3918
4560
|
*
|
|
3919
4561
|
* @type string
|
|
3920
4562
|
*/
|
|
3921
|
-
|
|
4563
|
+
id?: string;
|
|
4564
|
+
/**
|
|
4565
|
+
* 目标位置排序号
|
|
4566
|
+
*
|
|
4567
|
+
* @type number
|
|
4568
|
+
*/
|
|
4569
|
+
targetSortNum?: number;
|
|
3922
4570
|
}
|
|
3923
4571
|
export interface DataModelRequest {
|
|
3924
4572
|
/**
|
|
@@ -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
|
-
*
|
|
5369
|
+
* 主键
|
|
4710
5370
|
*
|
|
4711
|
-
* @type
|
|
5371
|
+
* @type string
|
|
4712
5372
|
*/
|
|
4713
|
-
|
|
5373
|
+
id?: string;
|
|
4714
5374
|
/**
|
|
4715
|
-
*
|
|
5375
|
+
* 页面key
|
|
4716
5376
|
*
|
|
4717
5377
|
* @type string
|
|
4718
5378
|
*/
|
|
4719
|
-
|
|
5379
|
+
key?: string;
|
|
4720
5380
|
/**
|
|
4721
|
-
*
|
|
5381
|
+
* 锁定页面人员id
|
|
4722
5382
|
*
|
|
4723
5383
|
* @type string
|
|
4724
5384
|
*/
|
|
4725
|
-
|
|
5385
|
+
lockUserId?: string;
|
|
4726
5386
|
/**
|
|
4727
|
-
*
|
|
5387
|
+
* 锁定页面人员名称
|
|
4728
5388
|
*
|
|
4729
5389
|
* @type string
|
|
4730
5390
|
*/
|
|
4731
|
-
|
|
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,18 @@ export interface FieldMeta {
|
|
|
9689
10385
|
* @type number
|
|
9690
10386
|
*/
|
|
9691
10387
|
backendOnly?: number;
|
|
10388
|
+
/**
|
|
10389
|
+
* 所属字段
|
|
10390
|
+
*
|
|
10391
|
+
* @type string
|
|
10392
|
+
*/
|
|
10393
|
+
belongingField?: string;
|
|
10394
|
+
/**
|
|
10395
|
+
* 所属对象
|
|
10396
|
+
*
|
|
10397
|
+
* @type string
|
|
10398
|
+
*/
|
|
10399
|
+
belongingObject?: string;
|
|
9692
10400
|
/**
|
|
9693
10401
|
* 主子关联 绑定子模型字段
|
|
9694
10402
|
*
|
|
@@ -9863,6 +10571,12 @@ export interface FieldMeta {
|
|
|
9863
10571
|
* @type number
|
|
9864
10572
|
*/
|
|
9865
10573
|
sysBuiltin?: number;
|
|
10574
|
+
/**
|
|
10575
|
+
* 字段建模是否启用追溯
|
|
10576
|
+
*
|
|
10577
|
+
* @type number
|
|
10578
|
+
*/
|
|
10579
|
+
traceEnabled?: number;
|
|
9866
10580
|
/**
|
|
9867
10581
|
* 数据类型
|
|
9868
10582
|
*
|
|
@@ -9917,6 +10631,18 @@ export interface FieldMetaDTO {
|
|
|
9917
10631
|
* @type number
|
|
9918
10632
|
*/
|
|
9919
10633
|
backendOnly?: number;
|
|
10634
|
+
/**
|
|
10635
|
+
* 所属字段
|
|
10636
|
+
*
|
|
10637
|
+
* @type string
|
|
10638
|
+
*/
|
|
10639
|
+
belongingField?: string;
|
|
10640
|
+
/**
|
|
10641
|
+
* 所属对象
|
|
10642
|
+
*
|
|
10643
|
+
* @type string
|
|
10644
|
+
*/
|
|
10645
|
+
belongingObject?: string;
|
|
9920
10646
|
/**
|
|
9921
10647
|
* 主子关联 绑定子模型字段
|
|
9922
10648
|
*
|
|
@@ -10157,6 +10883,12 @@ export interface FieldMetaDTO {
|
|
|
10157
10883
|
* @type number
|
|
10158
10884
|
*/
|
|
10159
10885
|
sysBuiltin?: number;
|
|
10886
|
+
/**
|
|
10887
|
+
* 字段建模是否启用追溯
|
|
10888
|
+
*
|
|
10889
|
+
* @type number
|
|
10890
|
+
*/
|
|
10891
|
+
traceEnabled?: number;
|
|
10160
10892
|
/**
|
|
10161
10893
|
* 数据类型
|
|
10162
10894
|
*
|
|
@@ -10439,6 +11171,18 @@ export interface FieldMetaResponse {
|
|
|
10439
11171
|
type?: string;
|
|
10440
11172
|
}
|
|
10441
11173
|
export interface FieldMetaVO {
|
|
11174
|
+
/**
|
|
11175
|
+
* 所属字段
|
|
11176
|
+
*
|
|
11177
|
+
* @type string
|
|
11178
|
+
*/
|
|
11179
|
+
belongingField?: string;
|
|
11180
|
+
/**
|
|
11181
|
+
* 所属对象
|
|
11182
|
+
*
|
|
11183
|
+
* @type string
|
|
11184
|
+
*/
|
|
11185
|
+
belongingObject?: string;
|
|
10442
11186
|
/**
|
|
10443
11187
|
* 主子关联 绑定子模型字段
|
|
10444
11188
|
*
|
|
@@ -10523,6 +11267,12 @@ export interface FieldMetaVO {
|
|
|
10523
11267
|
* @type IObject
|
|
10524
11268
|
*/
|
|
10525
11269
|
specificConfig?: IObject;
|
|
11270
|
+
/**
|
|
11271
|
+
* 字段建模是否启用追溯
|
|
11272
|
+
*
|
|
11273
|
+
* @type number
|
|
11274
|
+
*/
|
|
11275
|
+
traceEnabled?: number;
|
|
10526
11276
|
/**
|
|
10527
11277
|
* 数据类型 (primary_key/主键,tenant/租户关联,ref_master_id/关联主键,text/短文本,long_text/长文本,integer/整数,long/长整数,decimal/精度小数,boolean/布尔,binary/二进制流,date/日期,time/时间,date_time/日期时间,user_multi/人员多选,org_multi/部门多选,image/图片,attachment/附件enum/枚举,serial/序列号,ref/引用关联,master_slave/主子关联,enum_multi/枚举多选,ref_multi/模型多选,expression/公式,agg/汇总,esop/E-SOP,expression_condition/公式条件)
|
|
10528
11278
|
*
|
|
@@ -10621,12 +11371,30 @@ export interface FileResourceResponse {
|
|
|
10621
11371
|
url?: string;
|
|
10622
11372
|
}
|
|
10623
11373
|
export interface FileTaskDTO {
|
|
11374
|
+
/**
|
|
11375
|
+
* eDHR类型(可选,为空时不细分)
|
|
11376
|
+
*
|
|
11377
|
+
* @type string
|
|
11378
|
+
*/
|
|
11379
|
+
eDHRType?: string;
|
|
10624
11380
|
/**
|
|
10625
11381
|
* 是否包含半成品批次(当type为EDHR时使用,用于判断打印时是否需要打印半成品批次eDHR)
|
|
10626
11382
|
*
|
|
10627
11383
|
* @type boolean
|
|
10628
11384
|
*/
|
|
10629
11385
|
includeSemi?: boolean;
|
|
11386
|
+
/**
|
|
11387
|
+
* eDHR列表-灭菌批/物料收检 批次
|
|
11388
|
+
*
|
|
11389
|
+
* @type string
|
|
11390
|
+
*/
|
|
11391
|
+
materialNo?: string;
|
|
11392
|
+
/**
|
|
11393
|
+
* 是否填报内容区底色
|
|
11394
|
+
*
|
|
11395
|
+
* @type boolean
|
|
11396
|
+
*/
|
|
11397
|
+
showPrintFieldBg?: boolean;
|
|
10630
11398
|
/**
|
|
10631
11399
|
* 模板实例id
|
|
10632
11400
|
*
|
|
@@ -10897,6 +11665,12 @@ export interface FormRelateDTO {
|
|
|
10897
11665
|
* @type string
|
|
10898
11666
|
*/
|
|
10899
11667
|
officeType?: string;
|
|
11668
|
+
/**
|
|
11669
|
+
* 线下编码
|
|
11670
|
+
*
|
|
11671
|
+
* @type string
|
|
11672
|
+
*/
|
|
11673
|
+
offlineCode?: string;
|
|
10900
11674
|
/**
|
|
10901
11675
|
* 线下版本号
|
|
10902
11676
|
*
|
|
@@ -10965,6 +11739,12 @@ export interface FormTaskGetDTO {
|
|
|
10965
11739
|
* @type string
|
|
10966
11740
|
*/
|
|
10967
11741
|
relatedMaterialNo?: string;
|
|
11742
|
+
/**
|
|
11743
|
+
* 关联工单id
|
|
11744
|
+
*
|
|
11745
|
+
* @type string
|
|
11746
|
+
*/
|
|
11747
|
+
relatedMfgOrderId?: string;
|
|
10968
11748
|
/**
|
|
10969
11749
|
* 流水号
|
|
10970
11750
|
*
|
|
@@ -11139,6 +11919,12 @@ export interface GetAppResponse {
|
|
|
11139
11919
|
* @type number
|
|
11140
11920
|
*/
|
|
11141
11921
|
clear?: number;
|
|
11922
|
+
/**
|
|
11923
|
+
*
|
|
11924
|
+
*
|
|
11925
|
+
* @type string
|
|
11926
|
+
*/
|
|
11927
|
+
clientSecret?: string;
|
|
11142
11928
|
/**
|
|
11143
11929
|
*
|
|
11144
11930
|
*
|
|
@@ -11181,6 +11967,12 @@ export interface GetAppResponse {
|
|
|
11181
11967
|
* @type string
|
|
11182
11968
|
*/
|
|
11183
11969
|
initFailReason?: string;
|
|
11970
|
+
/**
|
|
11971
|
+
*
|
|
11972
|
+
*
|
|
11973
|
+
* @type string
|
|
11974
|
+
*/
|
|
11975
|
+
lastVisitTime?: string;
|
|
11184
11976
|
/**
|
|
11185
11977
|
*
|
|
11186
11978
|
*
|
|
@@ -11247,6 +12039,12 @@ export interface GetAppResponse {
|
|
|
11247
12039
|
* @type string
|
|
11248
12040
|
*/
|
|
11249
12041
|
name?: string;
|
|
12042
|
+
/**
|
|
12043
|
+
*
|
|
12044
|
+
*
|
|
12045
|
+
* @type string
|
|
12046
|
+
*/
|
|
12047
|
+
oauth2Scope?: string;
|
|
11250
12048
|
/**
|
|
11251
12049
|
*
|
|
11252
12050
|
*
|
|
@@ -11259,6 +12057,18 @@ export interface GetAppResponse {
|
|
|
11259
12057
|
* @type string
|
|
11260
12058
|
*/
|
|
11261
12059
|
pageIcon?: string;
|
|
12060
|
+
/**
|
|
12061
|
+
*
|
|
12062
|
+
*
|
|
12063
|
+
* @type boolean
|
|
12064
|
+
*/
|
|
12065
|
+
pubProd?: boolean;
|
|
12066
|
+
/**
|
|
12067
|
+
*
|
|
12068
|
+
*
|
|
12069
|
+
* @type string
|
|
12070
|
+
*/
|
|
12071
|
+
redirectUri?: string;
|
|
11262
12072
|
/**
|
|
11263
12073
|
*
|
|
11264
12074
|
*
|
|
@@ -11319,6 +12129,18 @@ export interface GetAppResponse {
|
|
|
11319
12129
|
* @type string
|
|
11320
12130
|
*/
|
|
11321
12131
|
tenantId?: string;
|
|
12132
|
+
/**
|
|
12133
|
+
*
|
|
12134
|
+
*
|
|
12135
|
+
* @type string
|
|
12136
|
+
*/
|
|
12137
|
+
testLastVisitTime?: string;
|
|
12138
|
+
/**
|
|
12139
|
+
*
|
|
12140
|
+
*
|
|
12141
|
+
* @type string
|
|
12142
|
+
*/
|
|
12143
|
+
testRedirectUri?: string;
|
|
11322
12144
|
/**
|
|
11323
12145
|
*
|
|
11324
12146
|
*
|
|
@@ -12108,6 +12930,12 @@ export interface InstanceRelationRequest {
|
|
|
12108
12930
|
* @type string
|
|
12109
12931
|
*/
|
|
12110
12932
|
module?: string;
|
|
12933
|
+
/**
|
|
12934
|
+
* 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
|
|
12935
|
+
*
|
|
12936
|
+
* @type string
|
|
12937
|
+
*/
|
|
12938
|
+
relationObject?: string;
|
|
12111
12939
|
/**
|
|
12112
12940
|
* 来源批次号
|
|
12113
12941
|
*
|
|
@@ -12194,6 +13022,12 @@ export interface InstanceRelationResponse {
|
|
|
12194
13022
|
* @type string
|
|
12195
13023
|
*/
|
|
12196
13024
|
module?: string;
|
|
13025
|
+
/**
|
|
13026
|
+
* 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
|
|
13027
|
+
*
|
|
13028
|
+
* @type string
|
|
13029
|
+
*/
|
|
13030
|
+
relationObject?: string;
|
|
12197
13031
|
/**
|
|
12198
13032
|
* 来源批次号
|
|
12199
13033
|
*
|
|
@@ -14866,38 +15700,6 @@ export interface MobilePageResponse {
|
|
|
14866
15700
|
*/
|
|
14867
15701
|
terminal?: string;
|
|
14868
15702
|
}
|
|
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
15703
|
export interface ModelBriefInfo {
|
|
14902
15704
|
/**
|
|
14903
15705
|
* 种类
|
|
@@ -16499,6 +17301,12 @@ export interface OfProcessApproveRequest {
|
|
|
16499
17301
|
* @type IObject
|
|
16500
17302
|
*/
|
|
16501
17303
|
data?: IObject;
|
|
17304
|
+
/**
|
|
17305
|
+
* 下一审核节点范围人员(格式:USER:xxx,USER:xxx)
|
|
17306
|
+
*
|
|
17307
|
+
* @type string
|
|
17308
|
+
*/
|
|
17309
|
+
nextApproveRangeUser?: string;
|
|
16502
17310
|
/**
|
|
16503
17311
|
* 是否不记录表单日志
|
|
16504
17312
|
*
|
|
@@ -17033,6 +17841,12 @@ export interface OfProcessSubmitRequest {
|
|
|
17033
17841
|
* @type OnlineFormChangeHistoryRequest
|
|
17034
17842
|
*/
|
|
17035
17843
|
historyRequest?: OnlineFormChangeHistoryRequest;
|
|
17844
|
+
/**
|
|
17845
|
+
* 下一审核节点范围人员(格式:USER:xxx,USER:xxx)
|
|
17846
|
+
*
|
|
17847
|
+
* @type string
|
|
17848
|
+
*/
|
|
17849
|
+
nextApproveRangeUser?: string;
|
|
17036
17850
|
/**
|
|
17037
17851
|
* 是否不记录表单日志
|
|
17038
17852
|
*
|
|
@@ -17557,6 +18371,12 @@ export interface OnlineFormDataInitProtocolDTO {
|
|
|
17557
18371
|
name?: string;
|
|
17558
18372
|
}
|
|
17559
18373
|
export interface OnlineFormDesignDTO {
|
|
18374
|
+
/**
|
|
18375
|
+
* 签名字段校验配置
|
|
18376
|
+
*
|
|
18377
|
+
* @type string
|
|
18378
|
+
*/
|
|
18379
|
+
checkSignatureConfig?: string;
|
|
17560
18380
|
/**
|
|
17561
18381
|
* 通信配置
|
|
17562
18382
|
*
|
|
@@ -17581,6 +18401,12 @@ export interface OnlineFormDesignDTO {
|
|
|
17581
18401
|
* @type object[]
|
|
17582
18402
|
*/
|
|
17583
18403
|
formTmplBomList?: object[];
|
|
18404
|
+
/**
|
|
18405
|
+
* 高度
|
|
18406
|
+
*
|
|
18407
|
+
* @type number
|
|
18408
|
+
*/
|
|
18409
|
+
height?: number;
|
|
17584
18410
|
/**
|
|
17585
18411
|
* 修改时间
|
|
17586
18412
|
*
|
|
@@ -17599,14 +18425,38 @@ export interface OnlineFormDesignDTO {
|
|
|
17599
18425
|
* @type string
|
|
17600
18426
|
*/
|
|
17601
18427
|
modifyUserName?: string;
|
|
18428
|
+
/**
|
|
18429
|
+
* 纸张大小
|
|
18430
|
+
*
|
|
18431
|
+
* @type string
|
|
18432
|
+
*/
|
|
18433
|
+
paperSize?: string;
|
|
17602
18434
|
/**
|
|
17603
18435
|
* 运行时json
|
|
17604
18436
|
*
|
|
17605
18437
|
* @type string
|
|
17606
18438
|
*/
|
|
17607
18439
|
runtimeJson?: string;
|
|
18440
|
+
/**
|
|
18441
|
+
* 宽度
|
|
18442
|
+
*
|
|
18443
|
+
* @type number
|
|
18444
|
+
*/
|
|
18445
|
+
width?: number;
|
|
17608
18446
|
}
|
|
17609
18447
|
export interface OnlineFormFieldMetaVO {
|
|
18448
|
+
/**
|
|
18449
|
+
* 所属字段
|
|
18450
|
+
*
|
|
18451
|
+
* @type string
|
|
18452
|
+
*/
|
|
18453
|
+
belongingField?: string;
|
|
18454
|
+
/**
|
|
18455
|
+
* 所属对象
|
|
18456
|
+
*
|
|
18457
|
+
* @type string
|
|
18458
|
+
*/
|
|
18459
|
+
belongingObject?: string;
|
|
17610
18460
|
/**
|
|
17611
18461
|
* 主子关联 绑定子模型字段
|
|
17612
18462
|
*
|
|
@@ -17625,6 +18475,18 @@ export interface OnlineFormFieldMetaVO {
|
|
|
17625
18475
|
* @type string
|
|
17626
18476
|
*/
|
|
17627
18477
|
bizType?: string;
|
|
18478
|
+
/**
|
|
18479
|
+
* 自定义字段ID
|
|
18480
|
+
*
|
|
18481
|
+
* @type string
|
|
18482
|
+
*/
|
|
18483
|
+
customFieldId?: string;
|
|
18484
|
+
/**
|
|
18485
|
+
* 自定义对象ID
|
|
18486
|
+
*
|
|
18487
|
+
* @type string
|
|
18488
|
+
*/
|
|
18489
|
+
customObjectId?: string;
|
|
17628
18490
|
/**
|
|
17629
18491
|
* 默认值
|
|
17630
18492
|
*
|
|
@@ -17697,6 +18559,12 @@ export interface OnlineFormFieldMetaVO {
|
|
|
17697
18559
|
* @type string
|
|
17698
18560
|
*/
|
|
17699
18561
|
subModelKey?: string;
|
|
18562
|
+
/**
|
|
18563
|
+
* 字段建模是否启用追溯
|
|
18564
|
+
*
|
|
18565
|
+
* @type number
|
|
18566
|
+
*/
|
|
18567
|
+
traceEnabled?: number;
|
|
17700
18568
|
/**
|
|
17701
18569
|
* 数据类型 (primary_key/主键,tenant/租户关联,ref_master_id/关联主键,text/短文本,long_text/长文本,integer/整数,long/长整数,decimal/精度小数,boolean/布尔,binary/二进制流,date/日期,time/时间,date_time/日期时间,user_multi/人员多选,org_multi/部门多选,image/图片,attachment/附件enum/枚举,serial/序列号,ref/引用关联,master_slave/主子关联,enum_multi/枚举多选,ref_multi/模型多选,expression/公式,agg/汇总,esop/E-SOP,expression_condition/公式条件)
|
|
17702
18570
|
*
|
|
@@ -17717,6 +18585,12 @@ export interface OnlineFormInsTaskRequest {
|
|
|
17717
18585
|
* @type string
|
|
17718
18586
|
*/
|
|
17719
18587
|
formType?: string;
|
|
18588
|
+
/**
|
|
18589
|
+
* 关联工单id集合
|
|
18590
|
+
*
|
|
18591
|
+
* @type string[]
|
|
18592
|
+
*/
|
|
18593
|
+
mfgOrderIds?: string[];
|
|
17720
18594
|
/**
|
|
17721
18595
|
* 模块类型
|
|
17722
18596
|
*
|
|
@@ -17747,6 +18621,12 @@ export interface OnlineFormInsTaskRequest {
|
|
|
17747
18621
|
* @type string[]
|
|
17748
18622
|
*/
|
|
17749
18623
|
relatedMaterialNos?: string[];
|
|
18624
|
+
/**
|
|
18625
|
+
* 关联对象(关联批次:MATERIAL_NO,关联工单:MFG_ORDER)
|
|
18626
|
+
*
|
|
18627
|
+
* @type string
|
|
18628
|
+
*/
|
|
18629
|
+
relationObject?: string;
|
|
17750
18630
|
/**
|
|
17751
18631
|
* 任务标题
|
|
17752
18632
|
*
|
|
@@ -17889,6 +18769,12 @@ export interface OnlineFormInstance {
|
|
|
17889
18769
|
* @type string
|
|
17890
18770
|
*/
|
|
17891
18771
|
docOutlineId?: string;
|
|
18772
|
+
/**
|
|
18773
|
+
*
|
|
18774
|
+
*
|
|
18775
|
+
* @type EdhrInstance
|
|
18776
|
+
*/
|
|
18777
|
+
edhrInstance?: EdhrInstance;
|
|
17892
18778
|
/**
|
|
17893
18779
|
*
|
|
17894
18780
|
*
|
|
@@ -18003,6 +18889,12 @@ export interface OnlineFormInstance {
|
|
|
18003
18889
|
* @type string
|
|
18004
18890
|
*/
|
|
18005
18891
|
instanceStatus?: string;
|
|
18892
|
+
/**
|
|
18893
|
+
*
|
|
18894
|
+
*
|
|
18895
|
+
* @type boolean
|
|
18896
|
+
*/
|
|
18897
|
+
isRef?: boolean;
|
|
18006
18898
|
/**
|
|
18007
18899
|
*
|
|
18008
18900
|
*
|
|
@@ -18141,6 +19033,18 @@ export interface OnlineFormInstance {
|
|
|
18141
19033
|
* @type string[]
|
|
18142
19034
|
*/
|
|
18143
19035
|
relatedMaterialNos?: string[];
|
|
19036
|
+
/**
|
|
19037
|
+
*
|
|
19038
|
+
*
|
|
19039
|
+
* @type string
|
|
19040
|
+
*/
|
|
19041
|
+
relatedMfgOrderCodes?: string;
|
|
19042
|
+
/**
|
|
19043
|
+
*
|
|
19044
|
+
*
|
|
19045
|
+
* @type string[]
|
|
19046
|
+
*/
|
|
19047
|
+
relatedMfgOrderIds?: string[];
|
|
18144
19048
|
/**
|
|
18145
19049
|
*
|
|
18146
19050
|
*
|
|
@@ -18755,6 +19659,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
18755
19659
|
* @type string
|
|
18756
19660
|
*/
|
|
18757
19661
|
instanceStatus?: string;
|
|
19662
|
+
/**
|
|
19663
|
+
* 是否是引用实例
|
|
19664
|
+
*
|
|
19665
|
+
* @type boolean
|
|
19666
|
+
*/
|
|
19667
|
+
isRef?: boolean;
|
|
18758
19668
|
/**
|
|
18759
19669
|
* 物料编号
|
|
18760
19670
|
*
|
|
@@ -18899,6 +19809,18 @@ export interface OnlineFormInstanceResponse {
|
|
|
18899
19809
|
* @type string[]
|
|
18900
19810
|
*/
|
|
18901
19811
|
relatedMaterialNos?: string[];
|
|
19812
|
+
/**
|
|
19813
|
+
* 关联工单code
|
|
19814
|
+
*
|
|
19815
|
+
* @type string
|
|
19816
|
+
*/
|
|
19817
|
+
relatedMfgOrderCodes?: string;
|
|
19818
|
+
/**
|
|
19819
|
+
* 关联工单id集合
|
|
19820
|
+
*
|
|
19821
|
+
* @type string[]
|
|
19822
|
+
*/
|
|
19823
|
+
relatedMfgOrderIds?: string[];
|
|
18902
19824
|
/**
|
|
18903
19825
|
* 关联id
|
|
18904
19826
|
*
|
|
@@ -19413,6 +20335,12 @@ export interface OnlineFormTmplModelResponse {
|
|
|
19413
20335
|
* @type string
|
|
19414
20336
|
*/
|
|
19415
20337
|
categoryName?: string;
|
|
20338
|
+
/**
|
|
20339
|
+
* 签名字段校验配置
|
|
20340
|
+
*
|
|
20341
|
+
* @type string
|
|
20342
|
+
*/
|
|
20343
|
+
checkSignatureConfig?: string;
|
|
19416
20344
|
/**
|
|
19417
20345
|
* 编号
|
|
19418
20346
|
*
|
|
@@ -19563,6 +20491,12 @@ export interface OnlineFormTmplModelResponse {
|
|
|
19563
20491
|
* @type string
|
|
19564
20492
|
*/
|
|
19565
20493
|
officeType?: string;
|
|
20494
|
+
/**
|
|
20495
|
+
* 线下编码
|
|
20496
|
+
*
|
|
20497
|
+
* @type string
|
|
20498
|
+
*/
|
|
20499
|
+
offlineCode?: string;
|
|
19566
20500
|
/**
|
|
19567
20501
|
* 线下版本号
|
|
19568
20502
|
*
|
|
@@ -19777,6 +20711,12 @@ export interface OnlineFormTmplRequest {
|
|
|
19777
20711
|
* @type string
|
|
19778
20712
|
*/
|
|
19779
20713
|
officeType?: string;
|
|
20714
|
+
/**
|
|
20715
|
+
* 线下编码
|
|
20716
|
+
*
|
|
20717
|
+
* @type string
|
|
20718
|
+
*/
|
|
20719
|
+
offlineCode?: string;
|
|
19780
20720
|
/**
|
|
19781
20721
|
* 电子记录-线下版本号
|
|
19782
20722
|
*
|
|
@@ -19875,6 +20815,12 @@ export interface OnlineFormTmplResponse {
|
|
|
19875
20815
|
* @type string
|
|
19876
20816
|
*/
|
|
19877
20817
|
categoryName?: string;
|
|
20818
|
+
/**
|
|
20819
|
+
* 签名字段校验配置
|
|
20820
|
+
*
|
|
20821
|
+
* @type string
|
|
20822
|
+
*/
|
|
20823
|
+
checkSignatureConfig?: string;
|
|
19878
20824
|
/**
|
|
19879
20825
|
* 编号
|
|
19880
20826
|
*
|
|
@@ -20019,6 +20965,12 @@ export interface OnlineFormTmplResponse {
|
|
|
20019
20965
|
* @type string
|
|
20020
20966
|
*/
|
|
20021
20967
|
officeType?: string;
|
|
20968
|
+
/**
|
|
20969
|
+
* 线下编码
|
|
20970
|
+
*
|
|
20971
|
+
* @type string
|
|
20972
|
+
*/
|
|
20973
|
+
offlineCode?: string;
|
|
20022
20974
|
/**
|
|
20023
20975
|
* 线下版本号
|
|
20024
20976
|
*
|
|
@@ -21697,6 +22649,18 @@ export interface PageDesignerLogResponse {
|
|
|
21697
22649
|
* @type string
|
|
21698
22650
|
*/
|
|
21699
22651
|
designerJson?: string;
|
|
22652
|
+
/**
|
|
22653
|
+
* 详情页设计Json
|
|
22654
|
+
*
|
|
22655
|
+
* @type string
|
|
22656
|
+
*/
|
|
22657
|
+
detailDesignerJson?: string;
|
|
22658
|
+
/**
|
|
22659
|
+
* 详情页运行时json
|
|
22660
|
+
*
|
|
22661
|
+
* @type string
|
|
22662
|
+
*/
|
|
22663
|
+
detailRuntimeJson?: string;
|
|
21700
22664
|
/**
|
|
21701
22665
|
* 主键
|
|
21702
22666
|
*
|
|
@@ -21760,7 +22724,7 @@ export interface PageLockRequest {
|
|
|
21760
22724
|
*/
|
|
21761
22725
|
id?: string;
|
|
21762
22726
|
/**
|
|
21763
|
-
* 页面类型 (web app avaScript ...)
|
|
22727
|
+
* 页面类型 (web app avaScript ...) transaction_module 事务
|
|
21764
22728
|
*
|
|
21765
22729
|
* @type string
|
|
21766
22730
|
*/
|
|
@@ -22625,6 +23589,12 @@ export interface PrintAdapterDTO {
|
|
|
22625
23589
|
* @type string
|
|
22626
23590
|
*/
|
|
22627
23591
|
env?: string;
|
|
23592
|
+
/**
|
|
23593
|
+
* 打印控制参数
|
|
23594
|
+
*
|
|
23595
|
+
* @type IObject
|
|
23596
|
+
*/
|
|
23597
|
+
param?: IObject;
|
|
22628
23598
|
/**
|
|
22629
23599
|
* 触发打印的应用id
|
|
22630
23600
|
*
|
|
@@ -22755,6 +23725,12 @@ export interface PrintLogResponse {
|
|
|
22755
23725
|
* @type string
|
|
22756
23726
|
*/
|
|
22757
23727
|
modifyUserName?: string;
|
|
23728
|
+
/**
|
|
23729
|
+
* 打印控制参数
|
|
23730
|
+
*
|
|
23731
|
+
* @type IObject
|
|
23732
|
+
*/
|
|
23733
|
+
param?: IObject;
|
|
22758
23734
|
/**
|
|
22759
23735
|
* 触发打印的应用id
|
|
22760
23736
|
*
|
|
@@ -22925,6 +23901,12 @@ export interface PrintLogSearchRequest {
|
|
|
22925
23901
|
* @type string
|
|
22926
23902
|
*/
|
|
22927
23903
|
startTime?: string;
|
|
23904
|
+
/**
|
|
23905
|
+
* 标签名称
|
|
23906
|
+
*
|
|
23907
|
+
* @type string
|
|
23908
|
+
*/
|
|
23909
|
+
tagName?: string;
|
|
22928
23910
|
}
|
|
22929
23911
|
export interface PrintPreviewResponse {
|
|
22930
23912
|
/**
|
|
@@ -26281,6 +27263,12 @@ export interface ProcessPathResponse {
|
|
|
26281
27263
|
* @type string
|
|
26282
27264
|
*/
|
|
26283
27265
|
childTxnInstStatus?: string;
|
|
27266
|
+
/**
|
|
27267
|
+
* 配置
|
|
27268
|
+
*
|
|
27269
|
+
* @type string
|
|
27270
|
+
*/
|
|
27271
|
+
config?: string;
|
|
26284
27272
|
/**
|
|
26285
27273
|
*
|
|
26286
27274
|
*
|
|
@@ -29055,6 +30043,12 @@ export interface ProductReleaseFormInstanctDTO {
|
|
|
29055
30043
|
* @type string
|
|
29056
30044
|
*/
|
|
29057
30045
|
docOutlineId?: string;
|
|
30046
|
+
/**
|
|
30047
|
+
*
|
|
30048
|
+
*
|
|
30049
|
+
* @type EdhrInstance
|
|
30050
|
+
*/
|
|
30051
|
+
edhrInstance?: EdhrInstance;
|
|
29058
30052
|
/**
|
|
29059
30053
|
*
|
|
29060
30054
|
*
|
|
@@ -29169,6 +30163,12 @@ export interface ProductReleaseFormInstanctDTO {
|
|
|
29169
30163
|
* @type string
|
|
29170
30164
|
*/
|
|
29171
30165
|
instanceStatus?: string;
|
|
30166
|
+
/**
|
|
30167
|
+
*
|
|
30168
|
+
*
|
|
30169
|
+
* @type boolean
|
|
30170
|
+
*/
|
|
30171
|
+
isRef?: boolean;
|
|
29172
30172
|
/**
|
|
29173
30173
|
*
|
|
29174
30174
|
*
|
|
@@ -29307,6 +30307,18 @@ export interface ProductReleaseFormInstanctDTO {
|
|
|
29307
30307
|
* @type string[]
|
|
29308
30308
|
*/
|
|
29309
30309
|
relatedMaterialNos?: string[];
|
|
30310
|
+
/**
|
|
30311
|
+
*
|
|
30312
|
+
*
|
|
30313
|
+
* @type string
|
|
30314
|
+
*/
|
|
30315
|
+
relatedMfgOrderCodes?: string;
|
|
30316
|
+
/**
|
|
30317
|
+
*
|
|
30318
|
+
*
|
|
30319
|
+
* @type string[]
|
|
30320
|
+
*/
|
|
30321
|
+
relatedMfgOrderIds?: string[];
|
|
29310
30322
|
/**
|
|
29311
30323
|
*
|
|
29312
30324
|
*
|
|
@@ -33635,6 +34647,12 @@ export interface Sort {
|
|
|
33635
34647
|
* @type string
|
|
33636
34648
|
*/
|
|
33637
34649
|
sortType?: string;
|
|
34650
|
+
/**
|
|
34651
|
+
*
|
|
34652
|
+
*
|
|
34653
|
+
* @type string
|
|
34654
|
+
*/
|
|
34655
|
+
table?: string;
|
|
33638
34656
|
}
|
|
33639
34657
|
export interface SqlViewModelRequest {
|
|
33640
34658
|
/**
|
|
@@ -35267,6 +36285,12 @@ export interface TransactionRequest {
|
|
|
35267
36285
|
* @type string
|
|
35268
36286
|
*/
|
|
35269
36287
|
key?: string;
|
|
36288
|
+
/**
|
|
36289
|
+
* logId
|
|
36290
|
+
*
|
|
36291
|
+
* @type string
|
|
36292
|
+
*/
|
|
36293
|
+
logId?: string;
|
|
35270
36294
|
/**
|
|
35271
36295
|
* 绑定模型key
|
|
35272
36296
|
*
|
|
@@ -35359,6 +36383,18 @@ export interface TransactionResponse {
|
|
|
35359
36383
|
* @type string
|
|
35360
36384
|
*/
|
|
35361
36385
|
key?: string;
|
|
36386
|
+
/**
|
|
36387
|
+
* 锁定页面人员id
|
|
36388
|
+
*
|
|
36389
|
+
* @type string
|
|
36390
|
+
*/
|
|
36391
|
+
lockUserId?: string;
|
|
36392
|
+
/**
|
|
36393
|
+
* 锁定页面人员名称
|
|
36394
|
+
*
|
|
36395
|
+
* @type string
|
|
36396
|
+
*/
|
|
36397
|
+
lockUserName?: string;
|
|
35362
36398
|
/**
|
|
35363
36399
|
* 绑定模型key
|
|
35364
36400
|
*
|
|
@@ -35395,6 +36431,12 @@ export interface TransactionResponse {
|
|
|
35395
36431
|
* @type string
|
|
35396
36432
|
*/
|
|
35397
36433
|
name?: string;
|
|
36434
|
+
/**
|
|
36435
|
+
* newLogId
|
|
36436
|
+
*
|
|
36437
|
+
* @type string
|
|
36438
|
+
*/
|
|
36439
|
+
newLogId?: string;
|
|
35398
36440
|
/**
|
|
35399
36441
|
* 流程定义id
|
|
35400
36442
|
*
|
|
@@ -37888,75 +38930,93 @@ export interface XmlSettingTableColum {
|
|
|
37888
38930
|
*/
|
|
37889
38931
|
type?: string;
|
|
37890
38932
|
}
|
|
37891
|
-
export interface
|
|
38933
|
+
export interface 发送消息DTO {
|
|
37892
38934
|
/**
|
|
37893
|
-
*
|
|
38935
|
+
* 邮件内容
|
|
37894
38936
|
*
|
|
37895
38937
|
* @type string
|
|
37896
38938
|
*/
|
|
37897
|
-
|
|
38939
|
+
content?: string;
|
|
37898
38940
|
/**
|
|
37899
|
-
* fieldType
|
|
37900
38941
|
*
|
|
37901
|
-
* @type string
|
|
37902
|
-
*/
|
|
37903
|
-
fieldType?: string;
|
|
37904
|
-
/**
|
|
37905
|
-
* 数据id
|
|
37906
38942
|
*
|
|
37907
38943
|
* @type string
|
|
37908
38944
|
*/
|
|
37909
38945
|
id?: string;
|
|
37910
38946
|
/**
|
|
37911
|
-
*
|
|
38947
|
+
* 接收人Id , 多个人员id用英文逗号隔开
|
|
37912
38948
|
*
|
|
37913
38949
|
* @type string
|
|
37914
38950
|
*/
|
|
37915
|
-
|
|
38951
|
+
receiveUserId?: string;
|
|
37916
38952
|
/**
|
|
37917
|
-
*
|
|
38953
|
+
* 邮件标题
|
|
37918
38954
|
*
|
|
37919
|
-
* @type
|
|
38955
|
+
* @type string
|
|
37920
38956
|
*/
|
|
37921
|
-
|
|
38957
|
+
title?: string;
|
|
37922
38958
|
/**
|
|
37923
|
-
*
|
|
38959
|
+
* 目标客户端类型枚举 email 邮箱 dingtalk 钉钉 wecom 企业微信 feishu 飞书 system 站内信
|
|
37924
38960
|
*
|
|
37925
|
-
* @type
|
|
38961
|
+
* @type string
|
|
37926
38962
|
*/
|
|
37927
|
-
|
|
38963
|
+
type?: string;
|
|
37928
38964
|
}
|
|
37929
|
-
export interface
|
|
38965
|
+
export interface 批量添加表单模板请求 {
|
|
37930
38966
|
/**
|
|
37931
|
-
*
|
|
38967
|
+
* 分类ID
|
|
37932
38968
|
*
|
|
37933
38969
|
* @type string
|
|
37934
38970
|
*/
|
|
37935
|
-
|
|
38971
|
+
categoryId?: string;
|
|
37936
38972
|
/**
|
|
38973
|
+
* 表单模板信息列表
|
|
37937
38974
|
*
|
|
38975
|
+
* @type 添加表单模板请求[]
|
|
38976
|
+
*/
|
|
38977
|
+
formTmplInfos?: 添加表单模板请求[];
|
|
38978
|
+
}
|
|
38979
|
+
export interface 文件处理结果 {
|
|
38980
|
+
/**
|
|
38981
|
+
* 失败原因
|
|
37938
38982
|
*
|
|
37939
38983
|
* @type string
|
|
37940
38984
|
*/
|
|
37941
|
-
|
|
38985
|
+
failReason?: string;
|
|
37942
38986
|
/**
|
|
37943
|
-
*
|
|
38987
|
+
* 文件名
|
|
37944
38988
|
*
|
|
37945
38989
|
* @type string
|
|
37946
38990
|
*/
|
|
37947
|
-
|
|
38991
|
+
fileName?: string;
|
|
37948
38992
|
/**
|
|
37949
|
-
*
|
|
38993
|
+
* 是否成功
|
|
37950
38994
|
*
|
|
37951
|
-
* @type
|
|
38995
|
+
* @type boolean
|
|
37952
38996
|
*/
|
|
37953
|
-
|
|
38997
|
+
success?: boolean;
|
|
37954
38998
|
/**
|
|
37955
|
-
*
|
|
38999
|
+
* 任务ID
|
|
37956
39000
|
*
|
|
37957
39001
|
* @type string
|
|
37958
39002
|
*/
|
|
37959
|
-
|
|
39003
|
+
taskId?: string;
|
|
39004
|
+
}
|
|
39005
|
+
export interface 查询解压失败原因请求 {
|
|
39006
|
+
/**
|
|
39007
|
+
* 解压任务 ID 列表
|
|
39008
|
+
*
|
|
39009
|
+
* @type string[]
|
|
39010
|
+
*/
|
|
39011
|
+
taskIds?: string[];
|
|
39012
|
+
}
|
|
39013
|
+
export interface 查询转换失败原因请求 {
|
|
39014
|
+
/**
|
|
39015
|
+
* 转换任务 ID 列表
|
|
39016
|
+
*
|
|
39017
|
+
* @type string[]
|
|
39018
|
+
*/
|
|
39019
|
+
taskIds?: string[];
|
|
37960
39020
|
}
|
|
37961
39021
|
export interface 消息设置VO {
|
|
37962
39022
|
/**
|
|
@@ -38056,3 +39116,141 @@ export interface 消息设置VO {
|
|
|
38056
39116
|
*/
|
|
38057
39117
|
userName?: string;
|
|
38058
39118
|
}
|
|
39119
|
+
export interface 添加表单模板请求 {
|
|
39120
|
+
/**
|
|
39121
|
+
* 分类ID
|
|
39122
|
+
*
|
|
39123
|
+
* @type string
|
|
39124
|
+
*/
|
|
39125
|
+
categoryId?: string;
|
|
39126
|
+
/**
|
|
39127
|
+
* 是否默认版本
|
|
39128
|
+
*
|
|
39129
|
+
* @type boolean
|
|
39130
|
+
*/
|
|
39131
|
+
defaulted?: boolean;
|
|
39132
|
+
/**
|
|
39133
|
+
* 表单名称
|
|
39134
|
+
*
|
|
39135
|
+
* @type string
|
|
39136
|
+
*/
|
|
39137
|
+
formName?: string;
|
|
39138
|
+
/**
|
|
39139
|
+
* 表单模板ID(转换列表的form_tmpl_id_字段)
|
|
39140
|
+
*
|
|
39141
|
+
* @type string
|
|
39142
|
+
*/
|
|
39143
|
+
formTmplId?: string;
|
|
39144
|
+
/**
|
|
39145
|
+
* 转换任务ID
|
|
39146
|
+
*
|
|
39147
|
+
* @type string
|
|
39148
|
+
*/
|
|
39149
|
+
taskId?: string;
|
|
39150
|
+
/**
|
|
39151
|
+
* 版本值
|
|
39152
|
+
*
|
|
39153
|
+
* @type string
|
|
39154
|
+
*/
|
|
39155
|
+
version?: string;
|
|
39156
|
+
}
|
|
39157
|
+
export interface 解压失败原因响应 {
|
|
39158
|
+
/**
|
|
39159
|
+
* 完成时间
|
|
39160
|
+
*
|
|
39161
|
+
* @type string
|
|
39162
|
+
*/
|
|
39163
|
+
completeTime?: string;
|
|
39164
|
+
/**
|
|
39165
|
+
* 解压状态
|
|
39166
|
+
*
|
|
39167
|
+
* @type string
|
|
39168
|
+
*/
|
|
39169
|
+
extractStatus?: string;
|
|
39170
|
+
/**
|
|
39171
|
+
* 解压状态描述
|
|
39172
|
+
*
|
|
39173
|
+
* @type string
|
|
39174
|
+
*/
|
|
39175
|
+
extractStatusDesc?: string;
|
|
39176
|
+
/**
|
|
39177
|
+
* 失败原因
|
|
39178
|
+
*
|
|
39179
|
+
* @type string
|
|
39180
|
+
*/
|
|
39181
|
+
failReason?: string;
|
|
39182
|
+
/**
|
|
39183
|
+
* 文件名
|
|
39184
|
+
*
|
|
39185
|
+
* @type string
|
|
39186
|
+
*/
|
|
39187
|
+
fileName?: string;
|
|
39188
|
+
/**
|
|
39189
|
+
* 任务 ID
|
|
39190
|
+
*
|
|
39191
|
+
* @type string
|
|
39192
|
+
*/
|
|
39193
|
+
taskId?: string;
|
|
39194
|
+
/**
|
|
39195
|
+
* 上传时间
|
|
39196
|
+
*
|
|
39197
|
+
* @type string
|
|
39198
|
+
*/
|
|
39199
|
+
uploadTime?: string;
|
|
39200
|
+
}
|
|
39201
|
+
export interface 转换失败原因响应 {
|
|
39202
|
+
/**
|
|
39203
|
+
* 完成时间
|
|
39204
|
+
*
|
|
39205
|
+
* @type string
|
|
39206
|
+
*/
|
|
39207
|
+
completeTime?: string;
|
|
39208
|
+
/**
|
|
39209
|
+
* 转换状态
|
|
39210
|
+
*
|
|
39211
|
+
* @type string
|
|
39212
|
+
*/
|
|
39213
|
+
convertStatus?: string;
|
|
39214
|
+
/**
|
|
39215
|
+
* 转换状态描述
|
|
39216
|
+
*
|
|
39217
|
+
* @type string
|
|
39218
|
+
*/
|
|
39219
|
+
convertStatusDesc?: string;
|
|
39220
|
+
/**
|
|
39221
|
+
* 失败原因
|
|
39222
|
+
*
|
|
39223
|
+
* @type string
|
|
39224
|
+
*/
|
|
39225
|
+
failReason?: string;
|
|
39226
|
+
/**
|
|
39227
|
+
* 文件名
|
|
39228
|
+
*
|
|
39229
|
+
* @type string
|
|
39230
|
+
*/
|
|
39231
|
+
fileName?: string;
|
|
39232
|
+
/**
|
|
39233
|
+
* 表单编码
|
|
39234
|
+
*
|
|
39235
|
+
* @type string
|
|
39236
|
+
*/
|
|
39237
|
+
formCode?: string;
|
|
39238
|
+
/**
|
|
39239
|
+
* 表单名称
|
|
39240
|
+
*
|
|
39241
|
+
* @type string
|
|
39242
|
+
*/
|
|
39243
|
+
formName?: string;
|
|
39244
|
+
/**
|
|
39245
|
+
* 任务 ID
|
|
39246
|
+
*
|
|
39247
|
+
* @type string
|
|
39248
|
+
*/
|
|
39249
|
+
taskId?: string;
|
|
39250
|
+
/**
|
|
39251
|
+
* 上传时间
|
|
39252
|
+
*
|
|
39253
|
+
* @type string
|
|
39254
|
+
*/
|
|
39255
|
+
uploadTime?: string;
|
|
39256
|
+
}
|