@gct-paas/core 0.0.1-dev.17 → 0.0.1-dev.19
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.min.cjs +1 -1
- package/dist/index.system.min.js +1 -1
- package/es/constants/editor-type/editor-type.d.ts +4 -0
- package/es/constants/editor-type/editor-type.mjs +1 -0
- package/es/interface/low-code-types/widget-basic-types.d.ts +10 -0
- package/es/service/gct-apaas/api.service.d.ts +3 -1
- package/es/service/gct-apaas/api.service.mjs +4 -0
- package/es/service/gct-apaas/app-global-settings.service.d.ts +0 -1
- package/es/service/gct-apaas/category.service.d.ts +3 -0
- package/es/service/gct-apaas/chat.service.d.ts +10 -0
- package/es/service/gct-apaas/chat.service.mjs +14 -0
- package/es/service/gct-apaas/control-config.service.d.ts +36 -0
- package/es/service/gct-apaas/control-config.service.mjs +38 -0
- package/es/service/gct-apaas/customer-complaint.service.d.ts +34 -0
- package/es/service/gct-apaas/customer-complaint.service.mjs +42 -0
- package/es/service/gct-apaas/dify-chat.service.d.ts +8 -0
- package/es/service/gct-apaas/dify-chat.service.mjs +18 -0
- package/es/service/gct-apaas/doc-control-started.service.d.ts +26 -0
- package/es/service/gct-apaas/doc-control-started.service.mjs +22 -0
- package/es/service/gct-apaas/doc-control-task-done.service.d.ts +26 -0
- package/es/service/gct-apaas/doc-control-task-done.service.mjs +22 -0
- package/es/service/gct-apaas/doc-control-task-todo.service.d.ts +38 -0
- package/es/service/gct-apaas/doc-control-task-todo.service.mjs +30 -0
- package/es/service/gct-apaas/doc-control.service.d.ts +13 -0
- package/es/service/gct-apaas/doc-control.service.mjs +18 -0
- package/es/service/gct-apaas/edhr-instance-search-history.service.d.ts +14 -0
- package/es/service/gct-apaas/edhr-instance-search-history.service.mjs +18 -0
- package/es/service/gct-apaas/edhr-instance.service.d.ts +5 -2
- package/es/service/gct-apaas/edhr-tmpl.service.d.ts +3 -1
- package/es/service/gct-apaas/edhr-tmpl.service.mjs +8 -0
- package/es/service/gct-apaas/entities.d.ts +2368 -164
- package/es/service/gct-apaas/file-task.service.d.ts +9 -0
- package/es/service/gct-apaas/file-task.service.mjs +22 -0
- package/es/service/gct-apaas/index.d.ts +22 -0
- package/es/service/gct-apaas/index.mjs +22 -0
- package/es/service/gct-apaas/menu-config.service.d.ts +0 -5
- package/es/service/gct-apaas/menu-config.service.mjs +0 -4
- package/es/service/gct-apaas/online-form-instance.service.d.ts +33 -14
- package/es/service/gct-apaas/online-form-instance.service.mjs +20 -8
- package/es/service/gct-apaas/online-form-log.service.d.ts +2 -1
- package/es/service/gct-apaas/online-form-tmpl.service.d.ts +1 -0
- package/es/service/gct-apaas/online-form-tmpl.service.mjs +4 -0
- package/es/service/gct-apaas/online-form.service.d.ts +5 -0
- package/es/service/gct-apaas/online-form.service.mjs +4 -0
- package/es/service/gct-apaas/process-definition-version.service.d.ts +1 -2
- package/es/service/gct-apaas/process-definition-version.service.mjs +0 -4
- package/es/service/gct-apaas/process-definition.service.d.ts +1 -0
- package/es/service/gct-apaas/process-definition.service.mjs +4 -0
- package/es/service/gct-apaas/process-instance-relation-.service.d.ts +25 -0
- package/es/service/gct-apaas/process-instance-relation-.service.mjs +34 -0
- package/es/service/gct-apaas/process-path.service.d.ts +6 -2
- package/es/service/gct-apaas/process-path.service.mjs +4 -0
- package/es/service/gct-apaas/process-task-done.service.d.ts +5 -0
- package/es/service/gct-apaas/process-task-todo.service.d.ts +10 -0
- package/es/service/gct-apaas/product-release.service.d.ts +6 -4
- package/es/service/gct-platform/api.service.d.ts +2 -1
- package/es/service/gct-platform/api.service.mjs +4 -0
- package/es/service/gct-platform/app.service.d.ts +2 -1
- package/es/service/gct-platform/app.service.mjs +4 -0
- package/es/service/gct-platform/category.service.d.ts +1 -0
- package/es/service/gct-platform/category.service.mjs +4 -0
- package/es/service/gct-platform/datasource-move-data.service.d.ts +5 -1
- package/es/service/gct-platform/datasource-move-data.service.mjs +2 -2
- package/es/service/gct-platform/datasource-move-detail.service.d.ts +4 -1
- package/es/service/gct-platform/datasource-move-detail.service.mjs +2 -2
- package/es/service/gct-platform/datasource-move.service.d.ts +2 -5
- package/es/service/gct-platform/datasource-move.service.mjs +5 -5
- package/es/service/gct-platform/entities.d.ts +739 -41
- package/es/service/gct-platform/file-task.service.d.ts +41 -0
- package/es/service/gct-platform/file-task.service.mjs +38 -0
- package/es/service/gct-platform/index.d.ts +4 -0
- package/es/service/gct-platform/index.mjs +4 -0
- package/es/service/gct-platform/minio-file.service.d.ts +9 -0
- package/es/service/gct-platform/minio-file.service.mjs +14 -0
- package/es/service/gct-platform/plat.service.d.ts +1 -0
- package/es/service/gct-platform/plat.service.mjs +4 -0
- package/es/service/gct-platform/plugin-version.service.d.ts +1 -1
- package/es/service/gct-platform/plugin-version.service.mjs +3 -3
- package/es/service/gct-platform/plugin.service.d.ts +26 -4
- package/es/service/gct-platform/plugin.service.mjs +17 -5
- package/es/service/gct-platform/tenant.service.d.ts +2 -5
- package/es/service/gct-platform/tenant.service.mjs +2 -2
- package/es/utils/plugin-pkg-util/plugin-pkg-util.mjs +22 -11
- package/package.json +4 -4
|
@@ -775,6 +775,12 @@ export interface AuditLogRequest {
|
|
|
775
775
|
* @type string
|
|
776
776
|
*/
|
|
777
777
|
requestType?: string;
|
|
778
|
+
/**
|
|
779
|
+
*
|
|
780
|
+
*
|
|
781
|
+
* @type string
|
|
782
|
+
*/
|
|
783
|
+
tenantId?: string;
|
|
778
784
|
}
|
|
779
785
|
export interface AuditLogResponse {
|
|
780
786
|
/**
|
|
@@ -861,6 +867,12 @@ export interface AuditLogResponse {
|
|
|
861
867
|
* @type string
|
|
862
868
|
*/
|
|
863
869
|
operateType?: string;
|
|
870
|
+
/**
|
|
871
|
+
* 操作人
|
|
872
|
+
*
|
|
873
|
+
* @type string
|
|
874
|
+
*/
|
|
875
|
+
operatorName?: string;
|
|
864
876
|
/**
|
|
865
877
|
* 出参
|
|
866
878
|
*
|
|
@@ -935,6 +947,12 @@ export interface AuditLogSearchRequest {
|
|
|
935
947
|
* @type number
|
|
936
948
|
*/
|
|
937
949
|
pageSize?: number;
|
|
950
|
+
/**
|
|
951
|
+
*
|
|
952
|
+
*
|
|
953
|
+
* @type string
|
|
954
|
+
*/
|
|
955
|
+
tenantId?: string;
|
|
938
956
|
}
|
|
939
957
|
export interface BackEndPrintRequest {
|
|
940
958
|
/**
|
|
@@ -1367,6 +1385,12 @@ export interface BizServiceRequest {
|
|
|
1367
1385
|
* @type string
|
|
1368
1386
|
*/
|
|
1369
1387
|
name?: string;
|
|
1388
|
+
/**
|
|
1389
|
+
*
|
|
1390
|
+
*
|
|
1391
|
+
* @type string
|
|
1392
|
+
*/
|
|
1393
|
+
overrideBizKey?: string;
|
|
1370
1394
|
/**
|
|
1371
1395
|
* 服务对应服务key(j0s脚本服务、sql服务、编排服务)
|
|
1372
1396
|
*
|
|
@@ -1555,6 +1579,24 @@ export interface CategoryCompleteVO {
|
|
|
1555
1579
|
* @type CategoryCompleteVO[]
|
|
1556
1580
|
*/
|
|
1557
1581
|
child?: CategoryCompleteVO[];
|
|
1582
|
+
/**
|
|
1583
|
+
*
|
|
1584
|
+
*
|
|
1585
|
+
* @type string
|
|
1586
|
+
*/
|
|
1587
|
+
createTime?: string;
|
|
1588
|
+
/**
|
|
1589
|
+
*
|
|
1590
|
+
*
|
|
1591
|
+
* @type string
|
|
1592
|
+
*/
|
|
1593
|
+
createUserId?: string;
|
|
1594
|
+
/**
|
|
1595
|
+
*
|
|
1596
|
+
*
|
|
1597
|
+
* @type string
|
|
1598
|
+
*/
|
|
1599
|
+
createUserName?: string;
|
|
1558
1600
|
/**
|
|
1559
1601
|
* 全路径
|
|
1560
1602
|
*
|
|
@@ -1567,6 +1609,24 @@ export interface CategoryCompleteVO {
|
|
|
1567
1609
|
* @type string
|
|
1568
1610
|
*/
|
|
1569
1611
|
id?: string;
|
|
1612
|
+
/**
|
|
1613
|
+
*
|
|
1614
|
+
*
|
|
1615
|
+
* @type string
|
|
1616
|
+
*/
|
|
1617
|
+
modifyTime?: string;
|
|
1618
|
+
/**
|
|
1619
|
+
*
|
|
1620
|
+
*
|
|
1621
|
+
* @type string
|
|
1622
|
+
*/
|
|
1623
|
+
modifyUserId?: string;
|
|
1624
|
+
/**
|
|
1625
|
+
*
|
|
1626
|
+
*
|
|
1627
|
+
* @type string
|
|
1628
|
+
*/
|
|
1629
|
+
modifyUserName?: string;
|
|
1570
1630
|
/**
|
|
1571
1631
|
* 所属模块(实体、枚举、web页面)
|
|
1572
1632
|
*
|
|
@@ -1873,6 +1933,12 @@ export interface ChildEdhrInstanceRelationDTO {
|
|
|
1873
1933
|
* @type number
|
|
1874
1934
|
*/
|
|
1875
1935
|
deleted?: number;
|
|
1936
|
+
/**
|
|
1937
|
+
*
|
|
1938
|
+
*
|
|
1939
|
+
* @type string
|
|
1940
|
+
*/
|
|
1941
|
+
docOutlineSnapshot?: string;
|
|
1876
1942
|
/**
|
|
1877
1943
|
*
|
|
1878
1944
|
*
|
|
@@ -1939,6 +2005,12 @@ export interface ChildEdhrInstanceRelationDTO {
|
|
|
1939
2005
|
* @type string
|
|
1940
2006
|
*/
|
|
1941
2007
|
productName?: string;
|
|
2008
|
+
/**
|
|
2009
|
+
*
|
|
2010
|
+
*
|
|
2011
|
+
* @type string
|
|
2012
|
+
*/
|
|
2013
|
+
productVersion?: string;
|
|
1942
2014
|
/**
|
|
1943
2015
|
*
|
|
1944
2016
|
*
|
|
@@ -2152,371 +2224,1797 @@ export interface CommitRequest {
|
|
|
2152
2224
|
*/
|
|
2153
2225
|
description?: string;
|
|
2154
2226
|
}
|
|
2155
|
-
export interface
|
|
2227
|
+
export interface ControlConfigRequest {
|
|
2156
2228
|
/**
|
|
2157
|
-
*
|
|
2229
|
+
* 流程定义id
|
|
2158
2230
|
*
|
|
2159
2231
|
* @type string
|
|
2160
2232
|
*/
|
|
2161
|
-
|
|
2233
|
+
procDefId?: string;
|
|
2162
2234
|
/**
|
|
2163
|
-
*
|
|
2235
|
+
* 分类id/模板id
|
|
2164
2236
|
*
|
|
2165
2237
|
* @type string
|
|
2166
2238
|
*/
|
|
2167
|
-
|
|
2239
|
+
refId?: string;
|
|
2168
2240
|
/**
|
|
2169
|
-
*
|
|
2241
|
+
* 关联关系类型(单据分类:ONLINE_FORM_CATEGORY/eDHR分类:EDHR_CATEGORY/特殊表单:ONLINE_FORM_CFG/特殊eDHR:EDHR_CFG)
|
|
2170
2242
|
*
|
|
2171
2243
|
* @type string
|
|
2172
2244
|
*/
|
|
2173
|
-
|
|
2245
|
+
type?: string;
|
|
2174
2246
|
}
|
|
2175
|
-
export interface
|
|
2247
|
+
export interface ControlConfigResponse {
|
|
2176
2248
|
/**
|
|
2177
|
-
*
|
|
2249
|
+
* 表单编号
|
|
2178
2250
|
*
|
|
2179
2251
|
* @type string
|
|
2180
2252
|
*/
|
|
2181
|
-
|
|
2253
|
+
code?: string;
|
|
2182
2254
|
/**
|
|
2183
|
-
* 应用版本号(自建应用需要传)
|
|
2184
2255
|
*
|
|
2185
|
-
* @type string
|
|
2186
|
-
*/
|
|
2187
|
-
appVersion?: string;
|
|
2188
|
-
/**
|
|
2189
|
-
* 备注
|
|
2190
2256
|
*
|
|
2191
2257
|
* @type string
|
|
2192
2258
|
*/
|
|
2193
|
-
|
|
2259
|
+
createTime?: string;
|
|
2194
2260
|
/**
|
|
2195
|
-
*
|
|
2261
|
+
*
|
|
2196
2262
|
*
|
|
2197
2263
|
* @type string
|
|
2198
2264
|
*/
|
|
2199
|
-
|
|
2200
|
-
}
|
|
2201
|
-
export interface CreateImportAppResponse {
|
|
2265
|
+
createUserId?: string;
|
|
2202
2266
|
/**
|
|
2203
2267
|
*
|
|
2204
2268
|
*
|
|
2205
2269
|
* @type string
|
|
2206
2270
|
*/
|
|
2207
|
-
|
|
2208
|
-
}
|
|
2209
|
-
export interface CreateReleaseRequest {
|
|
2271
|
+
createUserName?: string;
|
|
2210
2272
|
/**
|
|
2211
|
-
*
|
|
2273
|
+
* ID
|
|
2212
2274
|
*
|
|
2213
2275
|
* @type string
|
|
2214
2276
|
*/
|
|
2215
|
-
|
|
2277
|
+
id?: string;
|
|
2216
2278
|
/**
|
|
2217
|
-
*
|
|
2279
|
+
*
|
|
2218
2280
|
*
|
|
2219
2281
|
* @type string
|
|
2220
2282
|
*/
|
|
2221
|
-
|
|
2222
|
-
}
|
|
2223
|
-
export interface CronDTO {
|
|
2283
|
+
modifyTime?: string;
|
|
2224
2284
|
/**
|
|
2225
|
-
* corn 表达式 集合
|
|
2226
2285
|
*
|
|
2227
|
-
*
|
|
2286
|
+
*
|
|
2287
|
+
* @type string
|
|
2228
2288
|
*/
|
|
2229
|
-
|
|
2230
|
-
}
|
|
2231
|
-
export interface DataModelRequest {
|
|
2289
|
+
modifyUserId?: string;
|
|
2232
2290
|
/**
|
|
2233
|
-
*
|
|
2291
|
+
*
|
|
2234
2292
|
*
|
|
2235
2293
|
* @type string
|
|
2236
2294
|
*/
|
|
2237
|
-
|
|
2295
|
+
modifyUserName?: string;
|
|
2238
2296
|
/**
|
|
2239
|
-
*
|
|
2297
|
+
* 模板名称
|
|
2240
2298
|
*
|
|
2241
2299
|
* @type string
|
|
2242
2300
|
*/
|
|
2243
|
-
|
|
2301
|
+
name?: string;
|
|
2244
2302
|
/**
|
|
2245
|
-
*
|
|
2303
|
+
* 流程定义id
|
|
2246
2304
|
*
|
|
2247
|
-
* @type
|
|
2305
|
+
* @type string
|
|
2248
2306
|
*/
|
|
2249
|
-
|
|
2307
|
+
procDefId?: string;
|
|
2250
2308
|
/**
|
|
2251
|
-
*
|
|
2309
|
+
* 分类id/模板id
|
|
2252
2310
|
*
|
|
2253
|
-
* @type
|
|
2311
|
+
* @type string
|
|
2254
2312
|
*/
|
|
2255
|
-
|
|
2313
|
+
refId?: string;
|
|
2256
2314
|
/**
|
|
2257
|
-
*
|
|
2315
|
+
* 关联关系类型(单据分类:ONLINE_FORM_CATEGORY/eDHR分类:EDHR_CATEGORY/特殊表单:ONLINE_FORM_CFG/特殊eDHR:EDHR_CFG)
|
|
2258
2316
|
*
|
|
2259
2317
|
* @type string
|
|
2260
2318
|
*/
|
|
2261
|
-
|
|
2319
|
+
type?: string;
|
|
2262
2320
|
/**
|
|
2263
|
-
*
|
|
2321
|
+
* 模板版本
|
|
2264
2322
|
*
|
|
2265
2323
|
* @type string
|
|
2266
2324
|
*/
|
|
2267
|
-
|
|
2325
|
+
version?: string;
|
|
2268
2326
|
}
|
|
2269
|
-
export interface
|
|
2327
|
+
export interface ControlProcessApproveRequest {
|
|
2270
2328
|
/**
|
|
2271
|
-
*
|
|
2329
|
+
* 点击的按钮key
|
|
2272
2330
|
*
|
|
2273
|
-
* @type
|
|
2331
|
+
* @type string
|
|
2274
2332
|
*/
|
|
2275
|
-
|
|
2333
|
+
btnKey?: string;
|
|
2276
2334
|
/**
|
|
2277
|
-
*
|
|
2335
|
+
* 操作的按钮配置
|
|
2278
2336
|
*
|
|
2279
2337
|
* @type string
|
|
2280
2338
|
*/
|
|
2281
|
-
|
|
2339
|
+
buttonConfig?: string;
|
|
2282
2340
|
/**
|
|
2283
|
-
*
|
|
2341
|
+
* 意见
|
|
2284
2342
|
*
|
|
2285
2343
|
* @type string
|
|
2286
2344
|
*/
|
|
2287
|
-
|
|
2345
|
+
opinion?: string;
|
|
2288
2346
|
/**
|
|
2289
|
-
*
|
|
2347
|
+
* 签名数据
|
|
2290
2348
|
*
|
|
2291
2349
|
* @type string
|
|
2292
2350
|
*/
|
|
2293
|
-
|
|
2351
|
+
signature?: string;
|
|
2294
2352
|
/**
|
|
2295
|
-
*
|
|
2353
|
+
* 任务id
|
|
2296
2354
|
*
|
|
2297
2355
|
* @type string
|
|
2298
2356
|
*/
|
|
2299
|
-
|
|
2357
|
+
taskId?: string;
|
|
2300
2358
|
/**
|
|
2301
|
-
*
|
|
2359
|
+
* 受控文档模板id,格式:baseId:id
|
|
2302
2360
|
*
|
|
2303
|
-
* @type
|
|
2361
|
+
* @type string
|
|
2304
2362
|
*/
|
|
2305
|
-
|
|
2363
|
+
tmplId?: string;
|
|
2364
|
+
}
|
|
2365
|
+
export interface ControlProcessJumpRequest {
|
|
2306
2366
|
/**
|
|
2307
|
-
*
|
|
2367
|
+
* 点击的按钮的key:下一个节点:NextNode、开始节点:StartNode、结束节点:EndNode、上一个节点 PreviousNode
|
|
2308
2368
|
*
|
|
2309
|
-
* @type
|
|
2369
|
+
* @type string
|
|
2310
2370
|
*/
|
|
2311
|
-
|
|
2371
|
+
btnKey?: string;
|
|
2312
2372
|
/**
|
|
2313
|
-
*
|
|
2373
|
+
* 操作的按钮配置
|
|
2314
2374
|
*
|
|
2315
2375
|
* @type string
|
|
2316
2376
|
*/
|
|
2317
|
-
|
|
2377
|
+
buttonConfig?: string;
|
|
2318
2378
|
/**
|
|
2319
|
-
*
|
|
2379
|
+
* 意见
|
|
2320
2380
|
*
|
|
2321
2381
|
* @type string
|
|
2322
2382
|
*/
|
|
2323
|
-
|
|
2383
|
+
opinion?: string;
|
|
2324
2384
|
/**
|
|
2325
|
-
*
|
|
2385
|
+
* 签名数据
|
|
2326
2386
|
*
|
|
2327
2387
|
* @type string
|
|
2328
2388
|
*/
|
|
2329
|
-
|
|
2389
|
+
signature?: string;
|
|
2330
2390
|
/**
|
|
2331
|
-
*
|
|
2391
|
+
* 任务id
|
|
2332
2392
|
*
|
|
2333
2393
|
* @type string
|
|
2334
2394
|
*/
|
|
2335
|
-
|
|
2395
|
+
taskId?: string;
|
|
2336
2396
|
/**
|
|
2337
|
-
*
|
|
2397
|
+
* 受控文档模板id,格式:baseId:id
|
|
2338
2398
|
*
|
|
2339
2399
|
* @type string
|
|
2340
2400
|
*/
|
|
2341
|
-
|
|
2401
|
+
tmplId?: string;
|
|
2402
|
+
}
|
|
2403
|
+
export interface ControlProcessReassign4InterfereRequest {
|
|
2342
2404
|
/**
|
|
2343
|
-
*
|
|
2405
|
+
* 任务id
|
|
2344
2406
|
*
|
|
2345
2407
|
* @type string
|
|
2346
2408
|
*/
|
|
2347
|
-
|
|
2409
|
+
taskId?: string;
|
|
2348
2410
|
/**
|
|
2349
|
-
*
|
|
2411
|
+
* 受控文档模板id,格式:baseId:id
|
|
2350
2412
|
*
|
|
2351
2413
|
* @type string
|
|
2352
2414
|
*/
|
|
2353
|
-
|
|
2354
|
-
}
|
|
2355
|
-
export interface DateExportConfig {
|
|
2415
|
+
tmplId?: string;
|
|
2356
2416
|
/**
|
|
2357
|
-
*
|
|
2417
|
+
* 转给的用户id
|
|
2358
2418
|
*
|
|
2359
|
-
* @type
|
|
2419
|
+
* @type string
|
|
2360
2420
|
*/
|
|
2361
|
-
|
|
2421
|
+
toUserId?: string;
|
|
2422
|
+
}
|
|
2423
|
+
export interface ControlProcessReassignRequest {
|
|
2362
2424
|
/**
|
|
2363
|
-
*
|
|
2425
|
+
* 操作的按钮配置
|
|
2364
2426
|
*
|
|
2365
|
-
* @type
|
|
2427
|
+
* @type string
|
|
2366
2428
|
*/
|
|
2367
|
-
|
|
2429
|
+
buttonConfig?: string;
|
|
2368
2430
|
/**
|
|
2369
|
-
*
|
|
2431
|
+
* 意见
|
|
2370
2432
|
*
|
|
2371
2433
|
* @type string
|
|
2372
2434
|
*/
|
|
2373
|
-
|
|
2435
|
+
opinion?: string;
|
|
2374
2436
|
/**
|
|
2375
|
-
*
|
|
2437
|
+
* 签名数据
|
|
2376
2438
|
*
|
|
2377
|
-
* @type
|
|
2439
|
+
* @type string
|
|
2378
2440
|
*/
|
|
2379
|
-
|
|
2380
|
-
}
|
|
2381
|
-
export interface DefaultValue {
|
|
2441
|
+
signature?: string;
|
|
2382
2442
|
/**
|
|
2383
|
-
*
|
|
2443
|
+
* 任务id
|
|
2384
2444
|
*
|
|
2385
2445
|
* @type string
|
|
2386
2446
|
*/
|
|
2387
|
-
|
|
2447
|
+
taskId?: string;
|
|
2388
2448
|
/**
|
|
2389
|
-
*
|
|
2449
|
+
* 受控文档模板id,格式:baseId:id
|
|
2390
2450
|
*
|
|
2391
2451
|
* @type string
|
|
2392
2452
|
*/
|
|
2393
|
-
|
|
2453
|
+
tmplId?: string;
|
|
2394
2454
|
/**
|
|
2455
|
+
* 转给的用户id
|
|
2395
2456
|
*
|
|
2396
|
-
*
|
|
2397
|
-
* @type Record<string, unknown>
|
|
2457
|
+
* @type string
|
|
2398
2458
|
*/
|
|
2399
|
-
|
|
2459
|
+
toUserId?: string;
|
|
2400
2460
|
}
|
|
2401
|
-
export interface
|
|
2461
|
+
export interface ControlProcessResubmitRequest {
|
|
2402
2462
|
/**
|
|
2403
|
-
*
|
|
2463
|
+
* 操作的按钮配置
|
|
2404
2464
|
*
|
|
2405
|
-
* @type
|
|
2465
|
+
* @type string
|
|
2406
2466
|
*/
|
|
2407
|
-
|
|
2467
|
+
buttonConfig?: string;
|
|
2408
2468
|
/**
|
|
2409
|
-
*
|
|
2469
|
+
* 意见
|
|
2410
2470
|
*
|
|
2411
2471
|
* @type string
|
|
2412
2472
|
*/
|
|
2413
|
-
|
|
2473
|
+
opinion?: string;
|
|
2474
|
+
/**
|
|
2475
|
+
* 签名数据
|
|
2476
|
+
*
|
|
2477
|
+
* @type string
|
|
2478
|
+
*/
|
|
2479
|
+
signature?: string;
|
|
2480
|
+
/**
|
|
2481
|
+
* 任务id,重新提交时传值
|
|
2482
|
+
*
|
|
2483
|
+
* @type string
|
|
2484
|
+
*/
|
|
2485
|
+
taskId?: string;
|
|
2486
|
+
/**
|
|
2487
|
+
* 受控文档模板id,格式:baseId:id
|
|
2488
|
+
*
|
|
2489
|
+
* @type string
|
|
2490
|
+
*/
|
|
2491
|
+
tmplId?: string;
|
|
2492
|
+
}
|
|
2493
|
+
export interface ControlProcessReturn4InterfereRequest {
|
|
2494
|
+
/**
|
|
2495
|
+
* 受控文档模板id,格式:baseId:id
|
|
2496
|
+
*
|
|
2497
|
+
* @type string
|
|
2498
|
+
*/
|
|
2499
|
+
tmplId?: string;
|
|
2500
|
+
}
|
|
2501
|
+
export interface ControlProcessReturnRequest {
|
|
2502
|
+
/**
|
|
2503
|
+
* 操作的按钮配置
|
|
2504
|
+
*
|
|
2505
|
+
* @type string
|
|
2506
|
+
*/
|
|
2507
|
+
buttonConfig?: string;
|
|
2508
|
+
/**
|
|
2509
|
+
* 意见
|
|
2510
|
+
*
|
|
2511
|
+
* @type string
|
|
2512
|
+
*/
|
|
2513
|
+
opinion?: string;
|
|
2514
|
+
/**
|
|
2515
|
+
* 签名数据
|
|
2516
|
+
*
|
|
2517
|
+
* @type string
|
|
2518
|
+
*/
|
|
2519
|
+
signature?: string;
|
|
2520
|
+
/**
|
|
2521
|
+
* 任务id
|
|
2522
|
+
*
|
|
2523
|
+
* @type string
|
|
2524
|
+
*/
|
|
2525
|
+
taskId?: string;
|
|
2526
|
+
/**
|
|
2527
|
+
* 受控文档模板id,格式:baseId:id
|
|
2528
|
+
*
|
|
2529
|
+
* @type string
|
|
2530
|
+
*/
|
|
2531
|
+
tmplId?: string;
|
|
2532
|
+
}
|
|
2533
|
+
export interface CreateAppRequest {
|
|
2534
|
+
/**
|
|
2535
|
+
*
|
|
2536
|
+
*
|
|
2537
|
+
* @type string
|
|
2538
|
+
*/
|
|
2539
|
+
appId?: string;
|
|
2540
|
+
/**
|
|
2541
|
+
*
|
|
2542
|
+
*
|
|
2543
|
+
* @type string
|
|
2544
|
+
*/
|
|
2545
|
+
appPkgUrl?: string;
|
|
2546
|
+
/**
|
|
2547
|
+
*
|
|
2548
|
+
*
|
|
2549
|
+
* @type string
|
|
2550
|
+
*/
|
|
2551
|
+
appVersion?: string;
|
|
2552
|
+
}
|
|
2553
|
+
export interface CreateBranchRequest {
|
|
2554
|
+
/**
|
|
2555
|
+
* 应用id
|
|
2556
|
+
*
|
|
2557
|
+
* @type string
|
|
2558
|
+
*/
|
|
2559
|
+
appId?: string;
|
|
2560
|
+
/**
|
|
2561
|
+
* 应用版本号(自建应用需要传)
|
|
2562
|
+
*
|
|
2563
|
+
* @type string
|
|
2564
|
+
*/
|
|
2565
|
+
appVersion?: string;
|
|
2566
|
+
/**
|
|
2567
|
+
* 备注
|
|
2568
|
+
*
|
|
2569
|
+
* @type string
|
|
2570
|
+
*/
|
|
2571
|
+
description?: string;
|
|
2572
|
+
/**
|
|
2573
|
+
* 基线分支id(自建应用需要传)
|
|
2574
|
+
*
|
|
2575
|
+
* @type string
|
|
2576
|
+
*/
|
|
2577
|
+
sourceBranchId?: string;
|
|
2578
|
+
}
|
|
2579
|
+
export interface CreateImportAppResponse {
|
|
2580
|
+
/**
|
|
2581
|
+
*
|
|
2582
|
+
*
|
|
2583
|
+
* @type string
|
|
2584
|
+
*/
|
|
2585
|
+
sourceAppJson?: string;
|
|
2586
|
+
}
|
|
2587
|
+
export interface CreateReleaseRequest {
|
|
2588
|
+
/**
|
|
2589
|
+
* 提交标识
|
|
2590
|
+
*
|
|
2591
|
+
* @type string
|
|
2592
|
+
*/
|
|
2593
|
+
commitTag?: string;
|
|
2594
|
+
/**
|
|
2595
|
+
* 发行内容
|
|
2596
|
+
*
|
|
2597
|
+
* @type string
|
|
2598
|
+
*/
|
|
2599
|
+
releaseContent?: string;
|
|
2600
|
+
}
|
|
2601
|
+
export interface CronDTO {
|
|
2602
|
+
/**
|
|
2603
|
+
* corn 表达式 集合
|
|
2604
|
+
*
|
|
2605
|
+
* @type string[]
|
|
2606
|
+
*/
|
|
2607
|
+
cron?: string[];
|
|
2608
|
+
}
|
|
2609
|
+
export interface CustomerComplaintRequest {
|
|
2610
|
+
/**
|
|
2611
|
+
* 抱怨地址
|
|
2612
|
+
*
|
|
2613
|
+
* @type string
|
|
2614
|
+
*/
|
|
2615
|
+
address?: string;
|
|
2616
|
+
/**
|
|
2617
|
+
* 是否启动不良事件程序
|
|
2618
|
+
*
|
|
2619
|
+
* @type string
|
|
2620
|
+
*/
|
|
2621
|
+
adverseProcedure?: string;
|
|
2622
|
+
/**
|
|
2623
|
+
* 抱怨附件信息
|
|
2624
|
+
*
|
|
2625
|
+
* @type string
|
|
2626
|
+
*/
|
|
2627
|
+
attachment?: string;
|
|
2628
|
+
/**
|
|
2629
|
+
* 批号
|
|
2630
|
+
*
|
|
2631
|
+
* @type string
|
|
2632
|
+
*/
|
|
2633
|
+
batchNumber?: string;
|
|
2634
|
+
/**
|
|
2635
|
+
* 抱怨数量
|
|
2636
|
+
*
|
|
2637
|
+
* @type string
|
|
2638
|
+
*/
|
|
2639
|
+
complaintCount?: string;
|
|
2640
|
+
/**
|
|
2641
|
+
* 联系方式
|
|
2642
|
+
*
|
|
2643
|
+
* @type string
|
|
2644
|
+
*/
|
|
2645
|
+
contact?: string;
|
|
2646
|
+
/**
|
|
2647
|
+
* 抱怨描述
|
|
2648
|
+
*
|
|
2649
|
+
* @type string
|
|
2650
|
+
*/
|
|
2651
|
+
description?: string;
|
|
2652
|
+
/**
|
|
2653
|
+
* 致死
|
|
2654
|
+
*
|
|
2655
|
+
* @type string
|
|
2656
|
+
*/
|
|
2657
|
+
fatal?: string;
|
|
2658
|
+
/**
|
|
2659
|
+
* 第一次使用
|
|
2660
|
+
*
|
|
2661
|
+
* @type string
|
|
2662
|
+
*/
|
|
2663
|
+
firsttimeUse?: string;
|
|
2664
|
+
/**
|
|
2665
|
+
* 实例Id
|
|
2666
|
+
*
|
|
2667
|
+
* @type string
|
|
2668
|
+
*/
|
|
2669
|
+
instanceId?: string;
|
|
2670
|
+
/**
|
|
2671
|
+
* 采取措施避免损伤
|
|
2672
|
+
*
|
|
2673
|
+
* @type string
|
|
2674
|
+
*/
|
|
2675
|
+
measuresAvoidDamage?: string;
|
|
2676
|
+
/**
|
|
2677
|
+
* 抱怨发生时刻
|
|
2678
|
+
*
|
|
2679
|
+
* @type string
|
|
2680
|
+
*/
|
|
2681
|
+
occurrenceTime?: string;
|
|
2682
|
+
/**
|
|
2683
|
+
* 其他信息
|
|
2684
|
+
*
|
|
2685
|
+
* @type string
|
|
2686
|
+
*/
|
|
2687
|
+
otherInfo?: string;
|
|
2688
|
+
/**
|
|
2689
|
+
* 病人情况
|
|
2690
|
+
*
|
|
2691
|
+
* @type string
|
|
2692
|
+
*/
|
|
2693
|
+
patientCondition?: string;
|
|
2694
|
+
/**
|
|
2695
|
+
* 抱怨人
|
|
2696
|
+
*
|
|
2697
|
+
* @type string
|
|
2698
|
+
*/
|
|
2699
|
+
person?: string;
|
|
2700
|
+
/**
|
|
2701
|
+
* 产品名称
|
|
2702
|
+
*
|
|
2703
|
+
* @type string
|
|
2704
|
+
*/
|
|
2705
|
+
productName?: string;
|
|
2706
|
+
/**
|
|
2707
|
+
* 抱怨接收日期
|
|
2708
|
+
*
|
|
2709
|
+
* @type string
|
|
2710
|
+
*/
|
|
2711
|
+
receiveDate?: string;
|
|
2712
|
+
/**
|
|
2713
|
+
* 记录Id
|
|
2714
|
+
*
|
|
2715
|
+
* @type string
|
|
2716
|
+
*/
|
|
2717
|
+
recordId?: string;
|
|
2718
|
+
/**
|
|
2719
|
+
* 抱怨地区
|
|
2720
|
+
*
|
|
2721
|
+
* @type string
|
|
2722
|
+
*/
|
|
2723
|
+
region?: string;
|
|
2724
|
+
/**
|
|
2725
|
+
* 重复使用
|
|
2726
|
+
*
|
|
2727
|
+
* @type string
|
|
2728
|
+
*/
|
|
2729
|
+
repeatUse?: string;
|
|
2730
|
+
/**
|
|
2731
|
+
* 报告地址
|
|
2732
|
+
*
|
|
2733
|
+
* @type string
|
|
2734
|
+
*/
|
|
2735
|
+
reportUrl?: string;
|
|
2736
|
+
/**
|
|
2737
|
+
* 严重损伤
|
|
2738
|
+
*
|
|
2739
|
+
* @type string
|
|
2740
|
+
*/
|
|
2741
|
+
severeLoss?: string;
|
|
2742
|
+
/**
|
|
2743
|
+
* 来源
|
|
2744
|
+
*
|
|
2745
|
+
* @type string
|
|
2746
|
+
*/
|
|
2747
|
+
source?: string;
|
|
2748
|
+
/**
|
|
2749
|
+
* 规格型号
|
|
2750
|
+
*
|
|
2751
|
+
* @type string
|
|
2752
|
+
*/
|
|
2753
|
+
specificationModel?: string;
|
|
2754
|
+
/**
|
|
2755
|
+
* 状态
|
|
2756
|
+
*
|
|
2757
|
+
* @type number
|
|
2758
|
+
*/
|
|
2759
|
+
status?: number;
|
|
2760
|
+
/**
|
|
2761
|
+
* 是否同步
|
|
2762
|
+
*
|
|
2763
|
+
* @type number
|
|
2764
|
+
*/
|
|
2765
|
+
synced?: number;
|
|
2766
|
+
/**
|
|
2767
|
+
* UDI
|
|
2768
|
+
*
|
|
2769
|
+
* @type string
|
|
2770
|
+
*/
|
|
2771
|
+
udi?: string;
|
|
2772
|
+
}
|
|
2773
|
+
export interface CustomerComplaintResponse {
|
|
2774
|
+
/**
|
|
2775
|
+
* 抱怨地址
|
|
2776
|
+
*
|
|
2777
|
+
* @type string
|
|
2778
|
+
*/
|
|
2779
|
+
address?: string;
|
|
2780
|
+
/**
|
|
2781
|
+
* 是否启动不良事件程序
|
|
2782
|
+
*
|
|
2783
|
+
* @type string
|
|
2784
|
+
*/
|
|
2785
|
+
adverseProcedure?: string;
|
|
2786
|
+
/**
|
|
2787
|
+
* 抱怨附件信息
|
|
2788
|
+
*
|
|
2789
|
+
* @type string
|
|
2790
|
+
*/
|
|
2791
|
+
attachment?: string;
|
|
2792
|
+
/**
|
|
2793
|
+
* 批号
|
|
2794
|
+
*
|
|
2795
|
+
* @type string
|
|
2796
|
+
*/
|
|
2797
|
+
batchNumber?: string;
|
|
2798
|
+
/**
|
|
2799
|
+
* 抱怨数量
|
|
2800
|
+
*
|
|
2801
|
+
* @type string
|
|
2802
|
+
*/
|
|
2803
|
+
complaintCount?: string;
|
|
2804
|
+
/**
|
|
2805
|
+
* 联系方式
|
|
2806
|
+
*
|
|
2807
|
+
* @type string
|
|
2808
|
+
*/
|
|
2809
|
+
contact?: string;
|
|
2810
|
+
/**
|
|
2811
|
+
*
|
|
2812
|
+
*
|
|
2813
|
+
* @type string
|
|
2814
|
+
*/
|
|
2815
|
+
createTime?: string;
|
|
2816
|
+
/**
|
|
2817
|
+
*
|
|
2818
|
+
*
|
|
2819
|
+
* @type string
|
|
2820
|
+
*/
|
|
2821
|
+
createUserId?: string;
|
|
2822
|
+
/**
|
|
2823
|
+
*
|
|
2824
|
+
*
|
|
2825
|
+
* @type string
|
|
2826
|
+
*/
|
|
2827
|
+
createUserName?: string;
|
|
2828
|
+
/**
|
|
2829
|
+
* 抱怨描述
|
|
2830
|
+
*
|
|
2831
|
+
* @type string
|
|
2832
|
+
*/
|
|
2833
|
+
description?: string;
|
|
2834
|
+
/**
|
|
2835
|
+
* 致死
|
|
2836
|
+
*
|
|
2837
|
+
* @type string
|
|
2838
|
+
*/
|
|
2839
|
+
fatal?: string;
|
|
2840
|
+
/**
|
|
2841
|
+
* 第一次使用
|
|
2842
|
+
*
|
|
2843
|
+
* @type string
|
|
2844
|
+
*/
|
|
2845
|
+
firsttimeUse?: string;
|
|
2846
|
+
/**
|
|
2847
|
+
* 主键
|
|
2848
|
+
*
|
|
2849
|
+
* @type string
|
|
2850
|
+
*/
|
|
2851
|
+
id?: string;
|
|
2852
|
+
/**
|
|
2853
|
+
* 实例Id
|
|
2854
|
+
*
|
|
2855
|
+
* @type string
|
|
2856
|
+
*/
|
|
2857
|
+
instanceId?: string;
|
|
2858
|
+
/**
|
|
2859
|
+
* 采取措施避免损伤
|
|
2860
|
+
*
|
|
2861
|
+
* @type string
|
|
2862
|
+
*/
|
|
2863
|
+
measuresAvoidDamage?: string;
|
|
2864
|
+
/**
|
|
2865
|
+
*
|
|
2866
|
+
*
|
|
2867
|
+
* @type string
|
|
2868
|
+
*/
|
|
2869
|
+
modifyTime?: string;
|
|
2870
|
+
/**
|
|
2871
|
+
*
|
|
2872
|
+
*
|
|
2873
|
+
* @type string
|
|
2874
|
+
*/
|
|
2875
|
+
modifyUserId?: string;
|
|
2876
|
+
/**
|
|
2877
|
+
*
|
|
2878
|
+
*
|
|
2879
|
+
* @type string
|
|
2880
|
+
*/
|
|
2881
|
+
modifyUserName?: string;
|
|
2882
|
+
/**
|
|
2883
|
+
* 抱怨发生时刻
|
|
2884
|
+
*
|
|
2885
|
+
* @type string
|
|
2886
|
+
*/
|
|
2887
|
+
occurrenceTime?: string;
|
|
2888
|
+
/**
|
|
2889
|
+
* 其他信息
|
|
2890
|
+
*
|
|
2891
|
+
* @type string
|
|
2892
|
+
*/
|
|
2893
|
+
otherInfo?: string;
|
|
2894
|
+
/**
|
|
2895
|
+
* 病人情况
|
|
2896
|
+
*
|
|
2897
|
+
* @type string
|
|
2898
|
+
*/
|
|
2899
|
+
patientCondition?: string;
|
|
2900
|
+
/**
|
|
2901
|
+
* 抱怨人
|
|
2902
|
+
*
|
|
2903
|
+
* @type string
|
|
2904
|
+
*/
|
|
2905
|
+
person?: string;
|
|
2906
|
+
/**
|
|
2907
|
+
* 产品名称
|
|
2908
|
+
*
|
|
2909
|
+
* @type string
|
|
2910
|
+
*/
|
|
2911
|
+
productName?: string;
|
|
2912
|
+
/**
|
|
2913
|
+
* 抱怨接收日期
|
|
2914
|
+
*
|
|
2915
|
+
* @type string
|
|
2916
|
+
*/
|
|
2917
|
+
receiveDate?: string;
|
|
2918
|
+
/**
|
|
2919
|
+
* 记录Id
|
|
2920
|
+
*
|
|
2921
|
+
* @type string
|
|
2922
|
+
*/
|
|
2923
|
+
recordId?: string;
|
|
2924
|
+
/**
|
|
2925
|
+
* 抱怨地区
|
|
2926
|
+
*
|
|
2927
|
+
* @type string
|
|
2928
|
+
*/
|
|
2929
|
+
region?: string;
|
|
2930
|
+
/**
|
|
2931
|
+
* 重复使用
|
|
2932
|
+
*
|
|
2933
|
+
* @type string
|
|
2934
|
+
*/
|
|
2935
|
+
repeatUse?: string;
|
|
2936
|
+
/**
|
|
2937
|
+
* 报告地址
|
|
2938
|
+
*
|
|
2939
|
+
* @type string
|
|
2940
|
+
*/
|
|
2941
|
+
reportUrl?: string;
|
|
2942
|
+
/**
|
|
2943
|
+
* 严重损伤
|
|
2944
|
+
*
|
|
2945
|
+
* @type string
|
|
2946
|
+
*/
|
|
2947
|
+
severeLoss?: string;
|
|
2948
|
+
/**
|
|
2949
|
+
* 来源
|
|
2950
|
+
*
|
|
2951
|
+
* @type string
|
|
2952
|
+
*/
|
|
2953
|
+
source?: string;
|
|
2954
|
+
/**
|
|
2955
|
+
* 规格型号
|
|
2956
|
+
*
|
|
2957
|
+
* @type string
|
|
2958
|
+
*/
|
|
2959
|
+
specificationModel?: string;
|
|
2960
|
+
/**
|
|
2961
|
+
* 状态
|
|
2962
|
+
*
|
|
2963
|
+
* @type number
|
|
2964
|
+
*/
|
|
2965
|
+
status?: number;
|
|
2966
|
+
/**
|
|
2967
|
+
* 是否同步
|
|
2968
|
+
*
|
|
2969
|
+
* @type number
|
|
2970
|
+
*/
|
|
2971
|
+
synced?: number;
|
|
2972
|
+
/**
|
|
2973
|
+
* UDI
|
|
2974
|
+
*
|
|
2975
|
+
* @type string
|
|
2976
|
+
*/
|
|
2977
|
+
udi?: string;
|
|
2978
|
+
}
|
|
2979
|
+
export interface DataModelRequest {
|
|
2980
|
+
/**
|
|
2981
|
+
* 分类id
|
|
2982
|
+
*
|
|
2983
|
+
* @type string
|
|
2984
|
+
*/
|
|
2985
|
+
categoryId?: string;
|
|
2986
|
+
/**
|
|
2987
|
+
* 描述
|
|
2988
|
+
*
|
|
2989
|
+
* @type string
|
|
2990
|
+
*/
|
|
2991
|
+
description?: string;
|
|
2992
|
+
/**
|
|
2993
|
+
* 字段配置json
|
|
2994
|
+
*
|
|
2995
|
+
* @type FieldAttribute[]
|
|
2996
|
+
*/
|
|
2997
|
+
fieldConfig?: FieldAttribute[];
|
|
2998
|
+
/**
|
|
2999
|
+
* 字段映射关系
|
|
3000
|
+
*
|
|
3001
|
+
* @type SingleField[]
|
|
3002
|
+
*/
|
|
3003
|
+
fieldMapping?: SingleField[];
|
|
3004
|
+
/**
|
|
3005
|
+
* 模型key
|
|
3006
|
+
*
|
|
3007
|
+
* @type string
|
|
3008
|
+
*/
|
|
3009
|
+
key?: string;
|
|
3010
|
+
/**
|
|
3011
|
+
* 模型名称
|
|
3012
|
+
*
|
|
3013
|
+
* @type string
|
|
3014
|
+
*/
|
|
3015
|
+
name?: string;
|
|
3016
|
+
}
|
|
3017
|
+
export interface DataModelResponse {
|
|
3018
|
+
/**
|
|
3019
|
+
* 分类信息
|
|
3020
|
+
*
|
|
3021
|
+
* @type unknown
|
|
3022
|
+
*/
|
|
3023
|
+
categoryResponse?: unknown;
|
|
3024
|
+
/**
|
|
3025
|
+
*
|
|
3026
|
+
*
|
|
3027
|
+
* @type string
|
|
3028
|
+
*/
|
|
3029
|
+
createTime?: string;
|
|
3030
|
+
/**
|
|
3031
|
+
*
|
|
3032
|
+
*
|
|
3033
|
+
* @type string
|
|
3034
|
+
*/
|
|
3035
|
+
createUserId?: string;
|
|
3036
|
+
/**
|
|
3037
|
+
*
|
|
3038
|
+
*
|
|
3039
|
+
* @type string
|
|
3040
|
+
*/
|
|
3041
|
+
createUserName?: string;
|
|
3042
|
+
/**
|
|
3043
|
+
* 描述
|
|
3044
|
+
*
|
|
3045
|
+
* @type string
|
|
3046
|
+
*/
|
|
3047
|
+
description?: string;
|
|
3048
|
+
/**
|
|
3049
|
+
* 字段配置json
|
|
3050
|
+
*
|
|
3051
|
+
* @type FieldAttribute[]
|
|
3052
|
+
*/
|
|
3053
|
+
fieldConfig?: FieldAttribute[];
|
|
3054
|
+
/**
|
|
3055
|
+
* 字段映射关系
|
|
3056
|
+
*
|
|
3057
|
+
* @type SingleField[]
|
|
3058
|
+
*/
|
|
3059
|
+
fieldMapping?: SingleField[];
|
|
3060
|
+
/**
|
|
3061
|
+
* 主键
|
|
3062
|
+
*
|
|
3063
|
+
* @type string
|
|
3064
|
+
*/
|
|
3065
|
+
id?: string;
|
|
3066
|
+
/**
|
|
3067
|
+
* 模型key
|
|
3068
|
+
*
|
|
3069
|
+
* @type string
|
|
3070
|
+
*/
|
|
3071
|
+
key?: string;
|
|
3072
|
+
/**
|
|
3073
|
+
*
|
|
3074
|
+
*
|
|
3075
|
+
* @type string
|
|
3076
|
+
*/
|
|
3077
|
+
modifyTime?: string;
|
|
3078
|
+
/**
|
|
3079
|
+
*
|
|
3080
|
+
*
|
|
3081
|
+
* @type string
|
|
3082
|
+
*/
|
|
3083
|
+
modifyUserId?: string;
|
|
3084
|
+
/**
|
|
3085
|
+
*
|
|
3086
|
+
*
|
|
3087
|
+
* @type string
|
|
3088
|
+
*/
|
|
3089
|
+
modifyUserName?: string;
|
|
3090
|
+
/**
|
|
3091
|
+
* 模型名称
|
|
3092
|
+
*
|
|
3093
|
+
* @type string
|
|
3094
|
+
*/
|
|
3095
|
+
name?: string;
|
|
3096
|
+
/**
|
|
3097
|
+
* 类型(默认为基础模型)
|
|
3098
|
+
*
|
|
3099
|
+
* @type string
|
|
3100
|
+
*/
|
|
3101
|
+
type?: string;
|
|
3102
|
+
}
|
|
3103
|
+
export interface DatasourceMove {
|
|
3104
|
+
/**
|
|
3105
|
+
*
|
|
3106
|
+
*
|
|
3107
|
+
* @type string
|
|
3108
|
+
*/
|
|
3109
|
+
appId?: string;
|
|
3110
|
+
/**
|
|
3111
|
+
*
|
|
3112
|
+
*
|
|
3113
|
+
* @type string
|
|
3114
|
+
*/
|
|
3115
|
+
createTime?: string;
|
|
3116
|
+
/**
|
|
3117
|
+
*
|
|
3118
|
+
*
|
|
3119
|
+
* @type string
|
|
3120
|
+
*/
|
|
3121
|
+
createUserId?: string;
|
|
3122
|
+
/**
|
|
3123
|
+
*
|
|
3124
|
+
*
|
|
3125
|
+
* @type string
|
|
3126
|
+
*/
|
|
3127
|
+
createUserName?: string;
|
|
3128
|
+
/**
|
|
3129
|
+
*
|
|
3130
|
+
*
|
|
3131
|
+
* @type number
|
|
3132
|
+
*/
|
|
3133
|
+
deleted?: number;
|
|
3134
|
+
/**
|
|
3135
|
+
*
|
|
3136
|
+
*
|
|
3137
|
+
* @type unknown
|
|
3138
|
+
*/
|
|
3139
|
+
detail?: unknown;
|
|
3140
|
+
/**
|
|
3141
|
+
*
|
|
3142
|
+
*
|
|
3143
|
+
* @type string
|
|
3144
|
+
*/
|
|
3145
|
+
id?: string;
|
|
3146
|
+
/**
|
|
3147
|
+
*
|
|
3148
|
+
*
|
|
3149
|
+
* @type string
|
|
3150
|
+
*/
|
|
3151
|
+
modifyTime?: string;
|
|
3152
|
+
/**
|
|
3153
|
+
*
|
|
3154
|
+
*
|
|
3155
|
+
* @type string
|
|
3156
|
+
*/
|
|
3157
|
+
modifyUserId?: string;
|
|
3158
|
+
/**
|
|
3159
|
+
*
|
|
3160
|
+
*
|
|
3161
|
+
* @type string
|
|
3162
|
+
*/
|
|
3163
|
+
modifyUserName?: string;
|
|
3164
|
+
/**
|
|
3165
|
+
*
|
|
3166
|
+
*
|
|
3167
|
+
* @type string
|
|
3168
|
+
*/
|
|
3169
|
+
status?: string;
|
|
3170
|
+
/**
|
|
3171
|
+
*
|
|
3172
|
+
*
|
|
3173
|
+
* @type string
|
|
3174
|
+
*/
|
|
3175
|
+
tenantId?: string;
|
|
3176
|
+
}
|
|
3177
|
+
export interface DatasourceMoveDetail {
|
|
3178
|
+
/**
|
|
3179
|
+
*
|
|
3180
|
+
*
|
|
3181
|
+
* @type string
|
|
3182
|
+
*/
|
|
3183
|
+
createTime?: string;
|
|
3184
|
+
/**
|
|
3185
|
+
*
|
|
3186
|
+
*
|
|
3187
|
+
* @type string
|
|
3188
|
+
*/
|
|
3189
|
+
createUserId?: string;
|
|
3190
|
+
/**
|
|
3191
|
+
*
|
|
3192
|
+
*
|
|
3193
|
+
* @type string
|
|
3194
|
+
*/
|
|
3195
|
+
createUserName?: string;
|
|
3196
|
+
/**
|
|
3197
|
+
*
|
|
3198
|
+
*
|
|
3199
|
+
* @type number
|
|
3200
|
+
*/
|
|
3201
|
+
deleted?: number;
|
|
3202
|
+
/**
|
|
3203
|
+
*
|
|
3204
|
+
*
|
|
3205
|
+
* @type string
|
|
3206
|
+
*/
|
|
3207
|
+
id?: string;
|
|
3208
|
+
/**
|
|
3209
|
+
*
|
|
3210
|
+
*
|
|
3211
|
+
* @type boolean
|
|
3212
|
+
*/
|
|
3213
|
+
in?: boolean;
|
|
3214
|
+
/**
|
|
3215
|
+
*
|
|
3216
|
+
*
|
|
3217
|
+
* @type string
|
|
3218
|
+
*/
|
|
3219
|
+
modelKey?: string;
|
|
3220
|
+
/**
|
|
3221
|
+
*
|
|
3222
|
+
*
|
|
3223
|
+
* @type string
|
|
3224
|
+
*/
|
|
3225
|
+
modifyTime?: string;
|
|
3226
|
+
/**
|
|
3227
|
+
*
|
|
3228
|
+
*
|
|
3229
|
+
* @type string
|
|
3230
|
+
*/
|
|
3231
|
+
modifyUserId?: string;
|
|
3232
|
+
/**
|
|
3233
|
+
*
|
|
3234
|
+
*
|
|
3235
|
+
* @type string
|
|
3236
|
+
*/
|
|
3237
|
+
modifyUserName?: string;
|
|
3238
|
+
/**
|
|
3239
|
+
*
|
|
3240
|
+
*
|
|
3241
|
+
* @type string[]
|
|
3242
|
+
*/
|
|
3243
|
+
moveDataIds?: string[];
|
|
3244
|
+
/**
|
|
3245
|
+
*
|
|
3246
|
+
*
|
|
3247
|
+
* @type string
|
|
3248
|
+
*/
|
|
3249
|
+
moveId?: string;
|
|
3250
|
+
/**
|
|
3251
|
+
*
|
|
3252
|
+
*
|
|
3253
|
+
* @type string
|
|
3254
|
+
*/
|
|
3255
|
+
name?: string;
|
|
3256
|
+
/**
|
|
3257
|
+
*
|
|
3258
|
+
*
|
|
3259
|
+
* @type string
|
|
3260
|
+
*/
|
|
3261
|
+
status?: string;
|
|
3262
|
+
/**
|
|
3263
|
+
*
|
|
3264
|
+
*
|
|
3265
|
+
* @type string
|
|
3266
|
+
*/
|
|
3267
|
+
tenantId?: string;
|
|
3268
|
+
/**
|
|
3269
|
+
*
|
|
3270
|
+
*
|
|
3271
|
+
* @type string
|
|
3272
|
+
*/
|
|
3273
|
+
type?: string;
|
|
3274
|
+
}
|
|
3275
|
+
export interface DateExportConfig {
|
|
3276
|
+
/**
|
|
3277
|
+
* 日期
|
|
3278
|
+
*
|
|
3279
|
+
* @type number
|
|
3280
|
+
*/
|
|
3281
|
+
date?: number;
|
|
3282
|
+
/**
|
|
3283
|
+
* 日期时间
|
|
3284
|
+
*
|
|
3285
|
+
* @type number
|
|
3286
|
+
*/
|
|
3287
|
+
dateTime?: number;
|
|
3288
|
+
/**
|
|
3289
|
+
* 导出连接值
|
|
3290
|
+
*
|
|
3291
|
+
* @type string
|
|
3292
|
+
*/
|
|
3293
|
+
exportFormat?: string;
|
|
3294
|
+
/**
|
|
3295
|
+
* 时间
|
|
3296
|
+
*
|
|
3297
|
+
* @type number
|
|
3298
|
+
*/
|
|
3299
|
+
time?: number;
|
|
3300
|
+
}
|
|
3301
|
+
export interface DefaultValue {
|
|
3302
|
+
/**
|
|
3303
|
+
*
|
|
3304
|
+
*
|
|
3305
|
+
* @type string
|
|
3306
|
+
*/
|
|
3307
|
+
name?: string;
|
|
3308
|
+
/**
|
|
3309
|
+
* NONE/无默认值,FIXED/固定值,REF_FIELD/引用字段值
|
|
3310
|
+
*
|
|
3311
|
+
* @type string
|
|
3312
|
+
*/
|
|
3313
|
+
type?: string;
|
|
3314
|
+
/**
|
|
3315
|
+
*
|
|
3316
|
+
*
|
|
3317
|
+
* @type Record<string, unknown>
|
|
3318
|
+
*/
|
|
3319
|
+
value?: Record<string, unknown>;
|
|
3320
|
+
}
|
|
3321
|
+
export interface DeployRequest {
|
|
3322
|
+
/**
|
|
3323
|
+
* 是否激活(0 未激活,1 已激活)
|
|
3324
|
+
*
|
|
3325
|
+
* @type number
|
|
3326
|
+
*/
|
|
3327
|
+
active?: number;
|
|
3328
|
+
/**
|
|
3329
|
+
* 流程id
|
|
3330
|
+
*
|
|
3331
|
+
* @type string
|
|
3332
|
+
*/
|
|
3333
|
+
id?: string;
|
|
3334
|
+
/**
|
|
3335
|
+
* 流程设计json
|
|
3336
|
+
*
|
|
3337
|
+
* @type string
|
|
3338
|
+
*/
|
|
3339
|
+
json?: string;
|
|
3340
|
+
/**
|
|
3341
|
+
* 流程设计xml
|
|
3342
|
+
*
|
|
3343
|
+
* @type string
|
|
3344
|
+
*/
|
|
3345
|
+
xml?: string;
|
|
3346
|
+
}
|
|
3347
|
+
export interface DesignerOperateLogResponse {
|
|
3348
|
+
/**
|
|
3349
|
+
* 创建时间
|
|
3350
|
+
*
|
|
3351
|
+
* @type string
|
|
3352
|
+
*/
|
|
3353
|
+
createTime?: string;
|
|
3354
|
+
/**
|
|
3355
|
+
* 创建人ID
|
|
3356
|
+
*
|
|
3357
|
+
* @type string
|
|
3358
|
+
*/
|
|
3359
|
+
createUserId?: string;
|
|
3360
|
+
/**
|
|
3361
|
+
* 创建人
|
|
3362
|
+
*
|
|
3363
|
+
* @type string
|
|
3364
|
+
*/
|
|
3365
|
+
createUserName?: string;
|
|
3366
|
+
/**
|
|
3367
|
+
* ID
|
|
3368
|
+
*
|
|
3369
|
+
* @type string
|
|
3370
|
+
*/
|
|
3371
|
+
id?: string;
|
|
3372
|
+
/**
|
|
3373
|
+
* 入参
|
|
3374
|
+
*
|
|
3375
|
+
* @type string
|
|
3376
|
+
*/
|
|
3377
|
+
inputContent?: string;
|
|
3378
|
+
/**
|
|
3379
|
+
* 所属应用模块(模型设计:MODEL_DESIGN,页面设计:PAGE_DESIGN,打印设计:PRINT_DESIGN,逻辑开发:LOGIC_DEVELOP,流程设计:PROCESS_DESIGN,国际化:LANGUAGE,全局事件:GLOBAL_EVENT系统变量:SYSTEM_VARIABLES,一键部署:DEPLOY,基础设置:BASIC_SETTING,菜单设置:MENU_SETTING,版本管理:VERSION_CONTROL)
|
|
3380
|
+
*
|
|
3381
|
+
* @type string
|
|
3382
|
+
*/
|
|
3383
|
+
module?: string;
|
|
3384
|
+
/**
|
|
3385
|
+
* 操作类型(新增:INSERT,更新:UPDATE,删除:DELETE)
|
|
3386
|
+
*
|
|
3387
|
+
* @type string
|
|
3388
|
+
*/
|
|
3389
|
+
operateType?: string;
|
|
3390
|
+
/**
|
|
3391
|
+
* 出参
|
|
3392
|
+
*
|
|
3393
|
+
* @type string
|
|
3394
|
+
*/
|
|
3395
|
+
outputContent?: string;
|
|
3396
|
+
/**
|
|
3397
|
+
* 接口请求信息
|
|
3398
|
+
*
|
|
3399
|
+
* @type string
|
|
3400
|
+
*/
|
|
3401
|
+
requestInfo?: string;
|
|
3402
|
+
}
|
|
3403
|
+
export interface DifyChatRequest {
|
|
3404
|
+
/**
|
|
3405
|
+
* 客诉id
|
|
3406
|
+
*
|
|
3407
|
+
* @type string
|
|
3408
|
+
*/
|
|
3409
|
+
id?: string;
|
|
3410
|
+
/**
|
|
3411
|
+
* 用户输入/提问内容
|
|
3412
|
+
*
|
|
3413
|
+
* @type string
|
|
3414
|
+
*/
|
|
3415
|
+
message?: string;
|
|
3416
|
+
/**
|
|
3417
|
+
* ERP mock数据
|
|
3418
|
+
*
|
|
3419
|
+
* @type object[]
|
|
3420
|
+
*/
|
|
3421
|
+
saleRecords?: object[];
|
|
3422
|
+
}
|
|
3423
|
+
export interface DifyDocRequest {
|
|
3424
|
+
/**
|
|
3425
|
+
* 实例id
|
|
3426
|
+
*
|
|
3427
|
+
* @type string
|
|
3428
|
+
*/
|
|
3429
|
+
ofInstId?: string;
|
|
3430
|
+
/**
|
|
3431
|
+
* pdf对应url
|
|
3432
|
+
*
|
|
3433
|
+
* @type string
|
|
3434
|
+
*/
|
|
3435
|
+
url?: string;
|
|
3436
|
+
}
|
|
3437
|
+
export interface DigitsFieldDTO {
|
|
3438
|
+
/**
|
|
3439
|
+
* 字段key
|
|
3440
|
+
*
|
|
3441
|
+
* @type string
|
|
3442
|
+
*/
|
|
3443
|
+
key?: string;
|
|
3444
|
+
/**
|
|
3445
|
+
* 模型大类型 entity/实体,view/视图,data/数据
|
|
3446
|
+
*
|
|
3447
|
+
* @type string
|
|
3448
|
+
*/
|
|
3449
|
+
modelCategory?: string;
|
|
3450
|
+
/**
|
|
3451
|
+
* 模型定义表key
|
|
3452
|
+
*
|
|
3453
|
+
* @type string
|
|
3454
|
+
*/
|
|
3455
|
+
modelKey?: string;
|
|
3456
|
+
/**
|
|
3457
|
+
* 模型名称
|
|
3458
|
+
*
|
|
3459
|
+
* @type string
|
|
3460
|
+
*/
|
|
3461
|
+
modelName?: string;
|
|
3462
|
+
/**
|
|
3463
|
+
* 名称
|
|
3464
|
+
*
|
|
3465
|
+
* @type string
|
|
3466
|
+
*/
|
|
3467
|
+
name?: string;
|
|
3468
|
+
/**
|
|
3469
|
+
* 数据类型
|
|
3470
|
+
*
|
|
3471
|
+
* @type string
|
|
3472
|
+
*/
|
|
3473
|
+
type?: string;
|
|
3474
|
+
}
|
|
3475
|
+
export interface DocControlCategoryCompleteVO {
|
|
3476
|
+
/**
|
|
3477
|
+
* 子分类
|
|
3478
|
+
*
|
|
3479
|
+
* @type DocControlCategoryCompleteVO[]
|
|
3480
|
+
*/
|
|
3481
|
+
child?: DocControlCategoryCompleteVO[];
|
|
3482
|
+
/**
|
|
3483
|
+
*
|
|
3484
|
+
*
|
|
3485
|
+
* @type string
|
|
3486
|
+
*/
|
|
3487
|
+
createTime?: string;
|
|
3488
|
+
/**
|
|
3489
|
+
*
|
|
3490
|
+
*
|
|
3491
|
+
* @type string
|
|
3492
|
+
*/
|
|
3493
|
+
createUserId?: string;
|
|
3494
|
+
/**
|
|
3495
|
+
*
|
|
3496
|
+
*
|
|
3497
|
+
* @type string
|
|
3498
|
+
*/
|
|
3499
|
+
createUserName?: string;
|
|
3500
|
+
/**
|
|
3501
|
+
* 全路径
|
|
3502
|
+
*
|
|
3503
|
+
* @type string
|
|
3504
|
+
*/
|
|
3505
|
+
fullPath?: string;
|
|
3506
|
+
/**
|
|
3507
|
+
* 主键
|
|
3508
|
+
*
|
|
3509
|
+
* @type string
|
|
3510
|
+
*/
|
|
3511
|
+
id?: string;
|
|
3512
|
+
/**
|
|
3513
|
+
*
|
|
3514
|
+
*
|
|
3515
|
+
* @type string
|
|
3516
|
+
*/
|
|
3517
|
+
modifyTime?: string;
|
|
3518
|
+
/**
|
|
3519
|
+
*
|
|
3520
|
+
*
|
|
3521
|
+
* @type string
|
|
3522
|
+
*/
|
|
3523
|
+
modifyUserId?: string;
|
|
3524
|
+
/**
|
|
3525
|
+
*
|
|
3526
|
+
*
|
|
3527
|
+
* @type string
|
|
3528
|
+
*/
|
|
3529
|
+
modifyUserName?: string;
|
|
3530
|
+
/**
|
|
3531
|
+
* 所属模块(实体、枚举、web页面)
|
|
3532
|
+
*
|
|
3533
|
+
* @type string
|
|
3534
|
+
*/
|
|
3535
|
+
module?: string;
|
|
3536
|
+
/**
|
|
3537
|
+
* 分类名称
|
|
3538
|
+
*
|
|
3539
|
+
* @type string
|
|
3540
|
+
*/
|
|
3541
|
+
name?: string;
|
|
3542
|
+
/**
|
|
3543
|
+
* 父节点id
|
|
3544
|
+
*
|
|
3545
|
+
* @type string
|
|
3546
|
+
*/
|
|
3547
|
+
parentId?: string;
|
|
3548
|
+
/**
|
|
3549
|
+
* 模板受控流程定义id
|
|
3550
|
+
*
|
|
3551
|
+
* @type string
|
|
3552
|
+
*/
|
|
3553
|
+
procDefId?: string;
|
|
3554
|
+
/**
|
|
3555
|
+
* 分类id/模板id
|
|
3556
|
+
*
|
|
3557
|
+
* @type string
|
|
3558
|
+
*/
|
|
3559
|
+
refId?: string;
|
|
3560
|
+
/**
|
|
3561
|
+
* 排序
|
|
3562
|
+
*
|
|
3563
|
+
* @type number
|
|
3564
|
+
*/
|
|
3565
|
+
sortNum?: number;
|
|
3566
|
+
/**
|
|
3567
|
+
* 是否系统内置数据(0普通、1内置)
|
|
3568
|
+
*
|
|
3569
|
+
* @type number
|
|
3570
|
+
*/
|
|
3571
|
+
sysBuiltin?: number;
|
|
3572
|
+
}
|
|
3573
|
+
export interface DocControlProcessResponse {
|
|
3574
|
+
/**
|
|
3575
|
+
* edhr模板所关联之目录大纲
|
|
3576
|
+
*
|
|
3577
|
+
* @type DocOutlineResponse[]
|
|
3578
|
+
*/
|
|
3579
|
+
docOutlines?: DocOutlineResponse[];
|
|
3580
|
+
/**
|
|
3581
|
+
* edhr实例对象
|
|
3582
|
+
*
|
|
3583
|
+
* @type unknown
|
|
3584
|
+
*/
|
|
3585
|
+
edhrTmpl?: unknown;
|
|
3586
|
+
/**
|
|
3587
|
+
* 在线表单模板
|
|
3588
|
+
*
|
|
3589
|
+
* @type unknown
|
|
3590
|
+
*/
|
|
3591
|
+
ofTmpl?: unknown;
|
|
3592
|
+
/**
|
|
3593
|
+
* 用户可操作之按钮、节点信息、任务id
|
|
3594
|
+
*
|
|
3595
|
+
* @type unknown
|
|
3596
|
+
*/
|
|
3597
|
+
operationsDTO?: unknown;
|
|
3598
|
+
}
|
|
3599
|
+
export interface DocControlStartedResponse {
|
|
3600
|
+
/**
|
|
3601
|
+
* 分类名称
|
|
3602
|
+
*
|
|
3603
|
+
* @type string
|
|
3604
|
+
*/
|
|
3605
|
+
categoryName?: string;
|
|
3606
|
+
/**
|
|
3607
|
+
* 受控状态(UNCONTROLLED:期初,RUNNING:受控中,CONTROLLED:已受控)
|
|
3608
|
+
*
|
|
3609
|
+
* @type string
|
|
3610
|
+
*/
|
|
3611
|
+
controlStatus?: string;
|
|
3612
|
+
/**
|
|
3613
|
+
* 受控文件类型:FORM表单模板、EDHR edhr模板
|
|
3614
|
+
*
|
|
3615
|
+
* @type string
|
|
3616
|
+
*/
|
|
3617
|
+
controlTmplType?: string;
|
|
3618
|
+
/**
|
|
3619
|
+
*
|
|
3620
|
+
*
|
|
3621
|
+
* @type string
|
|
3622
|
+
*/
|
|
3623
|
+
createTime?: string;
|
|
3624
|
+
/**
|
|
3625
|
+
*
|
|
3626
|
+
*
|
|
3627
|
+
* @type string
|
|
3628
|
+
*/
|
|
3629
|
+
createUserId?: string;
|
|
3630
|
+
/**
|
|
3631
|
+
*
|
|
3632
|
+
*
|
|
3633
|
+
* @type string
|
|
3634
|
+
*/
|
|
3635
|
+
createUserName?: string;
|
|
3636
|
+
/**
|
|
3637
|
+
* 受控文件版本编码(表单/edhr模板编号)
|
|
3638
|
+
*
|
|
3639
|
+
* @type string
|
|
3640
|
+
*/
|
|
3641
|
+
docBaseId?: string;
|
|
3642
|
+
/**
|
|
3643
|
+
* 受控文件版本编码(表单/edhr模板编号)
|
|
3644
|
+
*
|
|
3645
|
+
* @type string
|
|
3646
|
+
*/
|
|
3647
|
+
docCode?: string;
|
|
3648
|
+
/**
|
|
3649
|
+
* 受控文件名称(表单/edhr模板名称)
|
|
3650
|
+
*
|
|
3651
|
+
* @type string
|
|
3652
|
+
*/
|
|
3653
|
+
docName?: string;
|
|
3654
|
+
/**
|
|
3655
|
+
* 受控文件版本id(表单/edhr模板id)
|
|
3656
|
+
*
|
|
3657
|
+
* @type string
|
|
3658
|
+
*/
|
|
3659
|
+
docVersionId?: string;
|
|
3660
|
+
/**
|
|
3661
|
+
* 主键
|
|
3662
|
+
*
|
|
3663
|
+
* @type string
|
|
3664
|
+
*/
|
|
3665
|
+
id?: string;
|
|
3666
|
+
/**
|
|
3667
|
+
* 发起人iD
|
|
3668
|
+
*
|
|
3669
|
+
* @type string
|
|
3670
|
+
*/
|
|
3671
|
+
initiator?: string;
|
|
3672
|
+
/**
|
|
3673
|
+
* 发起人姓名
|
|
3674
|
+
*
|
|
3675
|
+
* @type string
|
|
3676
|
+
*/
|
|
3677
|
+
initiatorName?: string;
|
|
3678
|
+
/**
|
|
3679
|
+
*
|
|
3680
|
+
*
|
|
3681
|
+
* @type string
|
|
3682
|
+
*/
|
|
3683
|
+
modifyTime?: string;
|
|
3684
|
+
/**
|
|
3685
|
+
*
|
|
3686
|
+
*
|
|
3687
|
+
* @type string
|
|
3688
|
+
*/
|
|
3689
|
+
modifyUserId?: string;
|
|
3690
|
+
/**
|
|
3691
|
+
*
|
|
3692
|
+
*
|
|
3693
|
+
* @type string
|
|
3694
|
+
*/
|
|
3695
|
+
modifyUserName?: string;
|
|
3696
|
+
/**
|
|
3697
|
+
* 线下版本号
|
|
3698
|
+
*
|
|
3699
|
+
* @type string
|
|
3700
|
+
*/
|
|
3701
|
+
offlineVersion?: string;
|
|
3702
|
+
/**
|
|
3703
|
+
* 流程实例id
|
|
3704
|
+
*
|
|
3705
|
+
* @type string
|
|
3706
|
+
*/
|
|
3707
|
+
processInstanceId?: string;
|
|
3708
|
+
/**
|
|
3709
|
+
* 提报时间
|
|
3710
|
+
*
|
|
3711
|
+
* @type string
|
|
3712
|
+
*/
|
|
3713
|
+
startTime?: string;
|
|
3714
|
+
/**
|
|
3715
|
+
* 版本
|
|
3716
|
+
*
|
|
3717
|
+
* @type string
|
|
3718
|
+
*/
|
|
3719
|
+
version?: string;
|
|
3720
|
+
}
|
|
3721
|
+
export interface DocControlTaskDoneResponse {
|
|
3722
|
+
/**
|
|
3723
|
+
* 处理人ID
|
|
3724
|
+
*
|
|
3725
|
+
* @type string
|
|
3726
|
+
*/
|
|
3727
|
+
assigneeId?: string;
|
|
3728
|
+
/**
|
|
3729
|
+
* 处理人姓名
|
|
3730
|
+
*
|
|
3731
|
+
* @type string
|
|
3732
|
+
*/
|
|
3733
|
+
assigneeName?: string;
|
|
3734
|
+
/**
|
|
3735
|
+
* 分类名称
|
|
3736
|
+
*
|
|
3737
|
+
* @type string
|
|
3738
|
+
*/
|
|
3739
|
+
categoryName?: string;
|
|
3740
|
+
/**
|
|
3741
|
+
* 受控状态(UNCONTROLLED:期初,RUNNING:受控中,CONTROLLED:已受控)
|
|
3742
|
+
*
|
|
3743
|
+
* @type string
|
|
3744
|
+
*/
|
|
3745
|
+
controlStatus?: string;
|
|
3746
|
+
/**
|
|
3747
|
+
* 受控文件类型:FORM表单模板、EDHR edhr模板
|
|
3748
|
+
*
|
|
3749
|
+
* @type string
|
|
3750
|
+
*/
|
|
3751
|
+
controlTmplType?: string;
|
|
3752
|
+
/**
|
|
3753
|
+
*
|
|
3754
|
+
*
|
|
3755
|
+
* @type string
|
|
3756
|
+
*/
|
|
3757
|
+
createTime?: string;
|
|
3758
|
+
/**
|
|
3759
|
+
*
|
|
3760
|
+
*
|
|
3761
|
+
* @type string
|
|
3762
|
+
*/
|
|
3763
|
+
createUserId?: string;
|
|
3764
|
+
/**
|
|
3765
|
+
*
|
|
3766
|
+
*
|
|
3767
|
+
* @type string
|
|
3768
|
+
*/
|
|
3769
|
+
createUserName?: string;
|
|
3770
|
+
/**
|
|
3771
|
+
* 受控文件(表单/edhr模板)BASE_ID
|
|
3772
|
+
*
|
|
3773
|
+
* @type string
|
|
3774
|
+
*/
|
|
3775
|
+
docBaseId?: string;
|
|
3776
|
+
/**
|
|
3777
|
+
* 受控文件版本编码(表单/edhr模板编号)
|
|
3778
|
+
*
|
|
3779
|
+
* @type string
|
|
3780
|
+
*/
|
|
3781
|
+
docCode?: string;
|
|
3782
|
+
/**
|
|
3783
|
+
* 受控文件名称(表单/edhr模板名称)
|
|
3784
|
+
*
|
|
3785
|
+
* @type string
|
|
3786
|
+
*/
|
|
3787
|
+
docName?: string;
|
|
3788
|
+
/**
|
|
3789
|
+
* 受控文件版本id(表单/edhr模板id)
|
|
3790
|
+
*
|
|
3791
|
+
* @type string
|
|
3792
|
+
*/
|
|
3793
|
+
docVersionId?: string;
|
|
3794
|
+
/**
|
|
3795
|
+
* 主键
|
|
3796
|
+
*
|
|
3797
|
+
* @type string
|
|
3798
|
+
*/
|
|
3799
|
+
id?: string;
|
|
3800
|
+
/**
|
|
3801
|
+
* 发起人iD
|
|
3802
|
+
*
|
|
3803
|
+
* @type string
|
|
3804
|
+
*/
|
|
3805
|
+
initiator?: string;
|
|
3806
|
+
/**
|
|
3807
|
+
* 发起人姓名
|
|
3808
|
+
*
|
|
3809
|
+
* @type string
|
|
3810
|
+
*/
|
|
3811
|
+
initiatorName?: string;
|
|
3812
|
+
/**
|
|
3813
|
+
*
|
|
3814
|
+
*
|
|
3815
|
+
* @type string
|
|
3816
|
+
*/
|
|
3817
|
+
modifyTime?: string;
|
|
3818
|
+
/**
|
|
3819
|
+
*
|
|
3820
|
+
*
|
|
3821
|
+
* @type string
|
|
3822
|
+
*/
|
|
3823
|
+
modifyUserId?: string;
|
|
3824
|
+
/**
|
|
3825
|
+
*
|
|
3826
|
+
*
|
|
3827
|
+
* @type string
|
|
3828
|
+
*/
|
|
3829
|
+
modifyUserName?: string;
|
|
2414
3830
|
/**
|
|
2415
|
-
*
|
|
3831
|
+
* 线下版本号
|
|
2416
3832
|
*
|
|
2417
3833
|
* @type string
|
|
2418
3834
|
*/
|
|
2419
|
-
|
|
3835
|
+
offlineVersion?: string;
|
|
2420
3836
|
/**
|
|
2421
|
-
*
|
|
3837
|
+
* 流程实例id
|
|
2422
3838
|
*
|
|
2423
3839
|
* @type string
|
|
2424
3840
|
*/
|
|
2425
|
-
|
|
3841
|
+
processInstanceId?: string;
|
|
3842
|
+
/**
|
|
3843
|
+
* 提报时间
|
|
3844
|
+
*
|
|
3845
|
+
* @type string
|
|
3846
|
+
*/
|
|
3847
|
+
startTime?: string;
|
|
3848
|
+
/**
|
|
3849
|
+
* 任务结束时间
|
|
3850
|
+
*
|
|
3851
|
+
* @type string
|
|
3852
|
+
*/
|
|
3853
|
+
taskEndTime?: string;
|
|
3854
|
+
/**
|
|
3855
|
+
* 任务id
|
|
3856
|
+
*
|
|
3857
|
+
* @type string
|
|
3858
|
+
*/
|
|
3859
|
+
taskId?: string;
|
|
3860
|
+
/**
|
|
3861
|
+
* 任务开始时间
|
|
3862
|
+
*
|
|
3863
|
+
* @type string
|
|
3864
|
+
*/
|
|
3865
|
+
taskStartTime?: string;
|
|
3866
|
+
/**
|
|
3867
|
+
* 版本
|
|
3868
|
+
*
|
|
3869
|
+
* @type string
|
|
3870
|
+
*/
|
|
3871
|
+
version?: string;
|
|
2426
3872
|
}
|
|
2427
|
-
export interface
|
|
3873
|
+
export interface DocControlTaskTodoResponse {
|
|
3874
|
+
/**
|
|
3875
|
+
* 处理人ID
|
|
3876
|
+
*
|
|
3877
|
+
* @type string
|
|
3878
|
+
*/
|
|
3879
|
+
assigneeId?: string;
|
|
3880
|
+
/**
|
|
3881
|
+
* 处理人姓名
|
|
3882
|
+
*
|
|
3883
|
+
* @type string
|
|
3884
|
+
*/
|
|
3885
|
+
assigneeName?: string;
|
|
3886
|
+
/**
|
|
3887
|
+
* 分类名称
|
|
3888
|
+
*
|
|
3889
|
+
* @type string
|
|
3890
|
+
*/
|
|
3891
|
+
categoryName?: string;
|
|
3892
|
+
/**
|
|
3893
|
+
* 受控状态(UNCONTROLLED,RUNNING,CONTROLLED)
|
|
3894
|
+
*
|
|
3895
|
+
* @type string
|
|
3896
|
+
*/
|
|
3897
|
+
controlStatus?: string;
|
|
3898
|
+
/**
|
|
3899
|
+
* 受控文件类型:FORM表单模板、EDHR edhr模板
|
|
3900
|
+
*
|
|
3901
|
+
* @type string
|
|
3902
|
+
*/
|
|
3903
|
+
controlTmplType?: string;
|
|
2428
3904
|
/**
|
|
2429
|
-
*
|
|
3905
|
+
*
|
|
2430
3906
|
*
|
|
2431
3907
|
* @type string
|
|
2432
3908
|
*/
|
|
2433
3909
|
createTime?: string;
|
|
2434
3910
|
/**
|
|
2435
|
-
*
|
|
3911
|
+
*
|
|
2436
3912
|
*
|
|
2437
3913
|
* @type string
|
|
2438
3914
|
*/
|
|
2439
3915
|
createUserId?: string;
|
|
2440
3916
|
/**
|
|
2441
|
-
*
|
|
3917
|
+
*
|
|
2442
3918
|
*
|
|
2443
3919
|
* @type string
|
|
2444
3920
|
*/
|
|
2445
3921
|
createUserName?: string;
|
|
2446
3922
|
/**
|
|
2447
|
-
*
|
|
3923
|
+
* 受控文件(表单/edhr模板)BASE_ID
|
|
3924
|
+
*
|
|
3925
|
+
* @type string
|
|
3926
|
+
*/
|
|
3927
|
+
docBaseId?: string;
|
|
3928
|
+
/**
|
|
3929
|
+
* 受控文件版本编码(表单/edhr模板编号)
|
|
3930
|
+
*
|
|
3931
|
+
* @type string
|
|
3932
|
+
*/
|
|
3933
|
+
docCode?: string;
|
|
3934
|
+
/**
|
|
3935
|
+
* 受控文件名称(表单/edhr模板名称)
|
|
3936
|
+
*
|
|
3937
|
+
* @type string
|
|
3938
|
+
*/
|
|
3939
|
+
docName?: string;
|
|
3940
|
+
/**
|
|
3941
|
+
* 受控文件版本id(表单/edhr模板id)
|
|
3942
|
+
*
|
|
3943
|
+
* @type string
|
|
3944
|
+
*/
|
|
3945
|
+
docVersionId?: string;
|
|
3946
|
+
/**
|
|
3947
|
+
* 主键
|
|
2448
3948
|
*
|
|
2449
3949
|
* @type string
|
|
2450
3950
|
*/
|
|
2451
3951
|
id?: string;
|
|
2452
3952
|
/**
|
|
2453
|
-
*
|
|
3953
|
+
* 发起人iD
|
|
2454
3954
|
*
|
|
2455
3955
|
* @type string
|
|
2456
3956
|
*/
|
|
2457
|
-
|
|
3957
|
+
initiator?: string;
|
|
2458
3958
|
/**
|
|
2459
|
-
*
|
|
3959
|
+
* 发起人姓名
|
|
2460
3960
|
*
|
|
2461
3961
|
* @type string
|
|
2462
3962
|
*/
|
|
2463
|
-
|
|
3963
|
+
initiatorName?: string;
|
|
2464
3964
|
/**
|
|
2465
|
-
*
|
|
3965
|
+
*
|
|
2466
3966
|
*
|
|
2467
3967
|
* @type string
|
|
2468
3968
|
*/
|
|
2469
|
-
|
|
3969
|
+
modifyTime?: string;
|
|
2470
3970
|
/**
|
|
2471
|
-
*
|
|
3971
|
+
*
|
|
2472
3972
|
*
|
|
2473
3973
|
* @type string
|
|
2474
3974
|
*/
|
|
2475
|
-
|
|
3975
|
+
modifyUserId?: string;
|
|
2476
3976
|
/**
|
|
2477
|
-
*
|
|
3977
|
+
*
|
|
2478
3978
|
*
|
|
2479
3979
|
* @type string
|
|
2480
3980
|
*/
|
|
2481
|
-
|
|
2482
|
-
}
|
|
2483
|
-
export interface DigitsFieldDTO {
|
|
3981
|
+
modifyUserName?: string;
|
|
2484
3982
|
/**
|
|
2485
|
-
*
|
|
3983
|
+
* 线下版本号
|
|
2486
3984
|
*
|
|
2487
3985
|
* @type string
|
|
2488
3986
|
*/
|
|
2489
|
-
|
|
3987
|
+
offlineVersion?: string;
|
|
2490
3988
|
/**
|
|
2491
|
-
*
|
|
3989
|
+
* 流程实例id
|
|
2492
3990
|
*
|
|
2493
3991
|
* @type string
|
|
2494
3992
|
*/
|
|
2495
|
-
|
|
3993
|
+
processInstanceId?: string;
|
|
2496
3994
|
/**
|
|
2497
|
-
*
|
|
3995
|
+
* 提报时间
|
|
2498
3996
|
*
|
|
2499
3997
|
* @type string
|
|
2500
3998
|
*/
|
|
2501
|
-
|
|
3999
|
+
startTime?: string;
|
|
2502
4000
|
/**
|
|
2503
|
-
*
|
|
4001
|
+
* 任务id
|
|
2504
4002
|
*
|
|
2505
4003
|
* @type string
|
|
2506
4004
|
*/
|
|
2507
|
-
|
|
4005
|
+
taskId?: string;
|
|
2508
4006
|
/**
|
|
2509
|
-
*
|
|
4007
|
+
* 任务开始时间
|
|
2510
4008
|
*
|
|
2511
4009
|
* @type string
|
|
2512
4010
|
*/
|
|
2513
|
-
|
|
4011
|
+
taskStartTime?: string;
|
|
2514
4012
|
/**
|
|
2515
|
-
*
|
|
4013
|
+
* 版本
|
|
2516
4014
|
*
|
|
2517
4015
|
* @type string
|
|
2518
4016
|
*/
|
|
2519
|
-
|
|
4017
|
+
version?: string;
|
|
2520
4018
|
}
|
|
2521
4019
|
export interface DocOutlineBase {
|
|
2522
4020
|
/**
|
|
@@ -2954,11 +4452,139 @@ export interface DocumentResponse {
|
|
|
2954
4452
|
*/
|
|
2955
4453
|
modelKey?: string;
|
|
2956
4454
|
/**
|
|
2957
|
-
* 模型名称
|
|
4455
|
+
* 模型名称
|
|
4456
|
+
*
|
|
4457
|
+
* @type string
|
|
4458
|
+
*/
|
|
4459
|
+
modelName?: string;
|
|
4460
|
+
/**
|
|
4461
|
+
*
|
|
4462
|
+
*
|
|
4463
|
+
* @type string
|
|
4464
|
+
*/
|
|
4465
|
+
modifyTime?: string;
|
|
4466
|
+
/**
|
|
4467
|
+
*
|
|
4468
|
+
*
|
|
4469
|
+
* @type string
|
|
4470
|
+
*/
|
|
4471
|
+
modifyUserId?: string;
|
|
4472
|
+
/**
|
|
4473
|
+
*
|
|
4474
|
+
*
|
|
4475
|
+
* @type string
|
|
4476
|
+
*/
|
|
4477
|
+
modifyUserName?: string;
|
|
4478
|
+
/**
|
|
4479
|
+
* 单据名称
|
|
4480
|
+
*
|
|
4481
|
+
* @type string
|
|
4482
|
+
*/
|
|
4483
|
+
name?: string;
|
|
4484
|
+
/**
|
|
4485
|
+
* 纸张大小
|
|
4486
|
+
*
|
|
4487
|
+
* @type string
|
|
4488
|
+
*/
|
|
4489
|
+
paperSize?: string;
|
|
4490
|
+
/**
|
|
4491
|
+
* 运行时json
|
|
4492
|
+
*
|
|
4493
|
+
* @type string
|
|
4494
|
+
*/
|
|
4495
|
+
runtimeJson?: string;
|
|
4496
|
+
/**
|
|
4497
|
+
*
|
|
4498
|
+
*
|
|
4499
|
+
* @type number
|
|
4500
|
+
*/
|
|
4501
|
+
sysBuiltin?: number;
|
|
4502
|
+
/**
|
|
4503
|
+
*
|
|
4504
|
+
*
|
|
4505
|
+
* @type string
|
|
4506
|
+
*/
|
|
4507
|
+
version?: string;
|
|
4508
|
+
/**
|
|
4509
|
+
*
|
|
4510
|
+
*
|
|
4511
|
+
* @type string
|
|
4512
|
+
*/
|
|
4513
|
+
viewType?: string;
|
|
4514
|
+
/**
|
|
4515
|
+
* 尺寸(宽度 单位/mm)
|
|
4516
|
+
*
|
|
4517
|
+
* @type number
|
|
4518
|
+
*/
|
|
4519
|
+
width?: number;
|
|
4520
|
+
}
|
|
4521
|
+
export interface EdhrInstance {
|
|
4522
|
+
/**
|
|
4523
|
+
*
|
|
4524
|
+
*
|
|
4525
|
+
* @type string
|
|
4526
|
+
*/
|
|
4527
|
+
appId?: string;
|
|
4528
|
+
/**
|
|
4529
|
+
*
|
|
4530
|
+
*
|
|
4531
|
+
* @type boolean
|
|
4532
|
+
*/
|
|
4533
|
+
canArchived?: boolean;
|
|
4534
|
+
/**
|
|
4535
|
+
*
|
|
4536
|
+
*
|
|
4537
|
+
* @type string
|
|
4538
|
+
*/
|
|
4539
|
+
createTime?: string;
|
|
4540
|
+
/**
|
|
4541
|
+
*
|
|
4542
|
+
*
|
|
4543
|
+
* @type string
|
|
4544
|
+
*/
|
|
4545
|
+
createUserId?: string;
|
|
4546
|
+
/**
|
|
4547
|
+
*
|
|
4548
|
+
*
|
|
4549
|
+
* @type string
|
|
4550
|
+
*/
|
|
4551
|
+
createUserName?: string;
|
|
4552
|
+
/**
|
|
4553
|
+
*
|
|
4554
|
+
*
|
|
4555
|
+
* @type number
|
|
4556
|
+
*/
|
|
4557
|
+
deleted?: number;
|
|
4558
|
+
/**
|
|
4559
|
+
*
|
|
4560
|
+
*
|
|
4561
|
+
* @type string
|
|
4562
|
+
*/
|
|
4563
|
+
docOutlineSnapshot?: string;
|
|
4564
|
+
/**
|
|
4565
|
+
*
|
|
4566
|
+
*
|
|
4567
|
+
* @type string
|
|
4568
|
+
*/
|
|
4569
|
+
id?: string;
|
|
4570
|
+
/**
|
|
4571
|
+
*
|
|
4572
|
+
*
|
|
4573
|
+
* @type string
|
|
4574
|
+
*/
|
|
4575
|
+
instanceStatus?: string;
|
|
4576
|
+
/**
|
|
4577
|
+
*
|
|
4578
|
+
*
|
|
4579
|
+
* @type string
|
|
4580
|
+
*/
|
|
4581
|
+
materialNo?: string;
|
|
4582
|
+
/**
|
|
4583
|
+
*
|
|
2958
4584
|
*
|
|
2959
4585
|
* @type string
|
|
2960
4586
|
*/
|
|
2961
|
-
|
|
4587
|
+
materialStatus?: string;
|
|
2962
4588
|
/**
|
|
2963
4589
|
*
|
|
2964
4590
|
*
|
|
@@ -2978,47 +4604,47 @@ export interface DocumentResponse {
|
|
|
2978
4604
|
*/
|
|
2979
4605
|
modifyUserName?: string;
|
|
2980
4606
|
/**
|
|
2981
|
-
*
|
|
4607
|
+
*
|
|
2982
4608
|
*
|
|
2983
4609
|
* @type string
|
|
2984
4610
|
*/
|
|
2985
|
-
|
|
4611
|
+
params?: string;
|
|
2986
4612
|
/**
|
|
2987
|
-
*
|
|
4613
|
+
*
|
|
2988
4614
|
*
|
|
2989
4615
|
* @type string
|
|
2990
4616
|
*/
|
|
2991
|
-
|
|
4617
|
+
productId?: string;
|
|
2992
4618
|
/**
|
|
2993
|
-
*
|
|
4619
|
+
*
|
|
2994
4620
|
*
|
|
2995
4621
|
* @type string
|
|
2996
4622
|
*/
|
|
2997
|
-
|
|
4623
|
+
productName?: string;
|
|
2998
4624
|
/**
|
|
2999
4625
|
*
|
|
3000
4626
|
*
|
|
3001
|
-
* @type
|
|
4627
|
+
* @type string
|
|
3002
4628
|
*/
|
|
3003
|
-
|
|
4629
|
+
productVersion?: string;
|
|
3004
4630
|
/**
|
|
3005
4631
|
*
|
|
3006
4632
|
*
|
|
3007
4633
|
* @type string
|
|
3008
4634
|
*/
|
|
3009
|
-
|
|
4635
|
+
serialNo?: string;
|
|
3010
4636
|
/**
|
|
3011
4637
|
*
|
|
3012
4638
|
*
|
|
3013
4639
|
* @type string
|
|
3014
4640
|
*/
|
|
3015
|
-
|
|
4641
|
+
tmplId?: string;
|
|
3016
4642
|
/**
|
|
3017
|
-
* 尺寸(宽度 单位/mm)
|
|
3018
4643
|
*
|
|
3019
|
-
*
|
|
4644
|
+
*
|
|
4645
|
+
* @type string
|
|
3020
4646
|
*/
|
|
3021
|
-
|
|
4647
|
+
tmplName?: string;
|
|
3022
4648
|
}
|
|
3023
4649
|
export interface EdhrInstanceRelationRequest {
|
|
3024
4650
|
/**
|
|
@@ -3157,6 +4783,12 @@ export interface EdhrInstanceResponse {
|
|
|
3157
4783
|
* @type string
|
|
3158
4784
|
*/
|
|
3159
4785
|
productName?: string;
|
|
4786
|
+
/**
|
|
4787
|
+
* 产品版本号
|
|
4788
|
+
*
|
|
4789
|
+
* @type string
|
|
4790
|
+
*/
|
|
4791
|
+
productVersion?: string;
|
|
3160
4792
|
/**
|
|
3161
4793
|
* 流水号
|
|
3162
4794
|
*
|
|
@@ -3176,6 +4808,86 @@ export interface EdhrInstanceResponse {
|
|
|
3176
4808
|
*/
|
|
3177
4809
|
tmplName?: string;
|
|
3178
4810
|
}
|
|
4811
|
+
export interface EdhrInstanceSearchHistoryResponse {
|
|
4812
|
+
/**
|
|
4813
|
+
* 创建人部门id
|
|
4814
|
+
*
|
|
4815
|
+
* @type string
|
|
4816
|
+
*/
|
|
4817
|
+
createOrgId?: string;
|
|
4818
|
+
/**
|
|
4819
|
+
*
|
|
4820
|
+
*
|
|
4821
|
+
* @type string
|
|
4822
|
+
*/
|
|
4823
|
+
createTime?: string;
|
|
4824
|
+
/**
|
|
4825
|
+
*
|
|
4826
|
+
*
|
|
4827
|
+
* @type string
|
|
4828
|
+
*/
|
|
4829
|
+
createUserId?: string;
|
|
4830
|
+
/**
|
|
4831
|
+
*
|
|
4832
|
+
*
|
|
4833
|
+
* @type string
|
|
4834
|
+
*/
|
|
4835
|
+
createUserName?: string;
|
|
4836
|
+
/**
|
|
4837
|
+
* 数据版本
|
|
4838
|
+
*
|
|
4839
|
+
* @type number
|
|
4840
|
+
*/
|
|
4841
|
+
dataVersion?: number;
|
|
4842
|
+
/**
|
|
4843
|
+
* ID
|
|
4844
|
+
*
|
|
4845
|
+
* @type string
|
|
4846
|
+
*/
|
|
4847
|
+
id?: string;
|
|
4848
|
+
/**
|
|
4849
|
+
* 物料编号
|
|
4850
|
+
*
|
|
4851
|
+
* @type string
|
|
4852
|
+
*/
|
|
4853
|
+
materialNo?: string;
|
|
4854
|
+
/**
|
|
4855
|
+
* 物料编号
|
|
4856
|
+
*
|
|
4857
|
+
* @type string
|
|
4858
|
+
*/
|
|
4859
|
+
materialStatus?: string;
|
|
4860
|
+
/**
|
|
4861
|
+
* 修改人部门id
|
|
4862
|
+
*
|
|
4863
|
+
* @type string
|
|
4864
|
+
*/
|
|
4865
|
+
modifyOrgId?: string;
|
|
4866
|
+
/**
|
|
4867
|
+
*
|
|
4868
|
+
*
|
|
4869
|
+
* @type string
|
|
4870
|
+
*/
|
|
4871
|
+
modifyTime?: string;
|
|
4872
|
+
/**
|
|
4873
|
+
*
|
|
4874
|
+
*
|
|
4875
|
+
* @type string
|
|
4876
|
+
*/
|
|
4877
|
+
modifyUserId?: string;
|
|
4878
|
+
/**
|
|
4879
|
+
*
|
|
4880
|
+
*
|
|
4881
|
+
* @type string
|
|
4882
|
+
*/
|
|
4883
|
+
modifyUserName?: string;
|
|
4884
|
+
/**
|
|
4885
|
+
* 租户id
|
|
4886
|
+
*
|
|
4887
|
+
* @type string
|
|
4888
|
+
*/
|
|
4889
|
+
tenantId?: string;
|
|
4890
|
+
}
|
|
3179
4891
|
export interface EdhrTmplRequest {
|
|
3180
4892
|
/**
|
|
3181
4893
|
* 父id
|
|
@@ -3213,6 +4925,12 @@ export interface EdhrTmplRequest {
|
|
|
3213
4925
|
* @type string
|
|
3214
4926
|
*/
|
|
3215
4927
|
name?: string;
|
|
4928
|
+
/**
|
|
4929
|
+
* 电子记录-线下版本号
|
|
4930
|
+
*
|
|
4931
|
+
* @type string
|
|
4932
|
+
*/
|
|
4933
|
+
offlineVersion?: string;
|
|
3216
4934
|
/**
|
|
3217
4935
|
* 版本
|
|
3218
4936
|
*
|
|
@@ -3305,6 +5023,12 @@ export interface EdhrTmplResponse {
|
|
|
3305
5023
|
* @type string
|
|
3306
5024
|
*/
|
|
3307
5025
|
name?: string;
|
|
5026
|
+
/**
|
|
5027
|
+
* 线下版本
|
|
5028
|
+
*
|
|
5029
|
+
* @type string
|
|
5030
|
+
*/
|
|
5031
|
+
offlineVersion?: string;
|
|
3308
5032
|
/**
|
|
3309
5033
|
* 版本
|
|
3310
5034
|
*
|
|
@@ -5480,6 +7204,40 @@ export interface FileResourceResponse {
|
|
|
5480
7204
|
*/
|
|
5481
7205
|
url?: string;
|
|
5482
7206
|
}
|
|
7207
|
+
export interface FileTaskDTO {
|
|
7208
|
+
/**
|
|
7209
|
+
* 模板实例id
|
|
7210
|
+
*
|
|
7211
|
+
* @type string
|
|
7212
|
+
*/
|
|
7213
|
+
tmplInstantId?: string;
|
|
7214
|
+
/**
|
|
7215
|
+
* 文件类型(EDHR/FORM)
|
|
7216
|
+
*
|
|
7217
|
+
* @type string
|
|
7218
|
+
*/
|
|
7219
|
+
type?: string;
|
|
7220
|
+
}
|
|
7221
|
+
export interface FileTaskStatus {
|
|
7222
|
+
/**
|
|
7223
|
+
* 文件ID
|
|
7224
|
+
*
|
|
7225
|
+
* @type string
|
|
7226
|
+
*/
|
|
7227
|
+
fileId?: string;
|
|
7228
|
+
/**
|
|
7229
|
+
* 文件大小
|
|
7230
|
+
*
|
|
7231
|
+
* @type number
|
|
7232
|
+
*/
|
|
7233
|
+
fileSize?: number;
|
|
7234
|
+
/**
|
|
7235
|
+
* 文件生成状态(TIMEOUT/SUCCEED/FAIL)
|
|
7236
|
+
*
|
|
7237
|
+
* @type string
|
|
7238
|
+
*/
|
|
7239
|
+
status?: string;
|
|
7240
|
+
}
|
|
5483
7241
|
export interface FilterConfig {
|
|
5484
7242
|
/**
|
|
5485
7243
|
*
|
|
@@ -5557,6 +7315,12 @@ export interface FormRelateDTO {
|
|
|
5557
7315
|
* @type string
|
|
5558
7316
|
*/
|
|
5559
7317
|
code?: string;
|
|
7318
|
+
/**
|
|
7319
|
+
* 受控状态(UNCONTROLLED:期初,RUNNING:受控中,CONTROLLED:已受控)
|
|
7320
|
+
*
|
|
7321
|
+
* @type string
|
|
7322
|
+
*/
|
|
7323
|
+
controlStatus?: string;
|
|
5560
7324
|
/**
|
|
5561
7325
|
* 是否默认版本 1是 0否
|
|
5562
7326
|
*
|
|
@@ -5570,7 +7334,7 @@ export interface FormRelateDTO {
|
|
|
5570
7334
|
*/
|
|
5571
7335
|
description?: string;
|
|
5572
7336
|
/**
|
|
5573
|
-
*
|
|
7337
|
+
* 版本 (PROFESSIONAL:专业版/EASY:普通版)
|
|
5574
7338
|
*
|
|
5575
7339
|
* @type string
|
|
5576
7340
|
*/
|
|
@@ -5587,6 +7351,12 @@ export interface FormRelateDTO {
|
|
|
5587
7351
|
* @type boolean
|
|
5588
7352
|
*/
|
|
5589
7353
|
hasChild?: boolean;
|
|
7354
|
+
/**
|
|
7355
|
+
* 是否添加过配置(有配置:true)
|
|
7356
|
+
*
|
|
7357
|
+
* @type boolean
|
|
7358
|
+
*/
|
|
7359
|
+
hasConfig?: boolean;
|
|
5590
7360
|
/**
|
|
5591
7361
|
* 关联表主键id
|
|
5592
7362
|
*
|
|
@@ -5623,6 +7393,12 @@ export interface FormRelateDTO {
|
|
|
5623
7393
|
* @type string
|
|
5624
7394
|
*/
|
|
5625
7395
|
name?: string;
|
|
7396
|
+
/**
|
|
7397
|
+
* 线下版本号
|
|
7398
|
+
*
|
|
7399
|
+
* @type string
|
|
7400
|
+
*/
|
|
7401
|
+
offlineVersion?: string;
|
|
5626
7402
|
/**
|
|
5627
7403
|
* 分类数据id
|
|
5628
7404
|
*
|
|
@@ -5642,6 +7418,62 @@ export interface FormRelateDTO {
|
|
|
5642
7418
|
*/
|
|
5643
7419
|
version?: string;
|
|
5644
7420
|
}
|
|
7421
|
+
export interface FormTaskGetDTO {
|
|
7422
|
+
/**
|
|
7423
|
+
* 单据code
|
|
7424
|
+
*
|
|
7425
|
+
* @type string
|
|
7426
|
+
*/
|
|
7427
|
+
code?: string;
|
|
7428
|
+
/**
|
|
7429
|
+
* 创建人ID
|
|
7430
|
+
*
|
|
7431
|
+
* @type string
|
|
7432
|
+
*/
|
|
7433
|
+
createUserId?: string;
|
|
7434
|
+
/**
|
|
7435
|
+
* 截止时间
|
|
7436
|
+
*
|
|
7437
|
+
* @type string
|
|
7438
|
+
*/
|
|
7439
|
+
endTime?: string;
|
|
7440
|
+
/**
|
|
7441
|
+
* 修改人id
|
|
7442
|
+
*
|
|
7443
|
+
* @type string
|
|
7444
|
+
*/
|
|
7445
|
+
modifyUserId?: string;
|
|
7446
|
+
/**
|
|
7447
|
+
* 关联批次
|
|
7448
|
+
*
|
|
7449
|
+
* @type string
|
|
7450
|
+
*/
|
|
7451
|
+
relatedMaterialNo?: string;
|
|
7452
|
+
/**
|
|
7453
|
+
* 开始时间
|
|
7454
|
+
*
|
|
7455
|
+
* @type string
|
|
7456
|
+
*/
|
|
7457
|
+
startTime?: string;
|
|
7458
|
+
/**
|
|
7459
|
+
* 任务标题
|
|
7460
|
+
*
|
|
7461
|
+
* @type string
|
|
7462
|
+
*/
|
|
7463
|
+
title?: string;
|
|
7464
|
+
/**
|
|
7465
|
+
* 表单名称
|
|
7466
|
+
*
|
|
7467
|
+
* @type string
|
|
7468
|
+
*/
|
|
7469
|
+
tmplName?: string;
|
|
7470
|
+
/**
|
|
7471
|
+
* 查询类型(我的单据填报:UNFILLED,我创建的:CREATED ,我已填单据:COMPLETED)
|
|
7472
|
+
*
|
|
7473
|
+
* @type string
|
|
7474
|
+
*/
|
|
7475
|
+
type?: string;
|
|
7476
|
+
}
|
|
5645
7477
|
export interface FrontOperateLogResponse {
|
|
5646
7478
|
/**
|
|
5647
7479
|
*
|
|
@@ -9944,6 +11776,32 @@ export interface OfBaseSubmitRequest {
|
|
|
9944
11776
|
*/
|
|
9945
11777
|
signature?: string;
|
|
9946
11778
|
}
|
|
11779
|
+
export interface OfEdhrInstRelationRequest {
|
|
11780
|
+
/**
|
|
11781
|
+
* 备注
|
|
11782
|
+
*
|
|
11783
|
+
* @type string
|
|
11784
|
+
*/
|
|
11785
|
+
description?: string;
|
|
11786
|
+
/**
|
|
11787
|
+
* 大纲模板id
|
|
11788
|
+
*
|
|
11789
|
+
* @type string
|
|
11790
|
+
*/
|
|
11791
|
+
docOutlineId?: string;
|
|
11792
|
+
/**
|
|
11793
|
+
* edhr实例id
|
|
11794
|
+
*
|
|
11795
|
+
* @type string
|
|
11796
|
+
*/
|
|
11797
|
+
edhrInstanceId?: string;
|
|
11798
|
+
/**
|
|
11799
|
+
* 在线表单模板id
|
|
11800
|
+
*
|
|
11801
|
+
* @type string
|
|
11802
|
+
*/
|
|
11803
|
+
tmplId?: string;
|
|
11804
|
+
}
|
|
9947
11805
|
export interface OfProcessAbandonRequest {
|
|
9948
11806
|
/**
|
|
9949
11807
|
* 点击的按钮的key
|
|
@@ -10070,9 +11928,17 @@ export interface OfProcessChangeRequest {
|
|
|
10070
11928
|
*/
|
|
10071
11929
|
taskId?: string;
|
|
10072
11930
|
}
|
|
11931
|
+
export interface OfProcessControlRequest {
|
|
11932
|
+
/**
|
|
11933
|
+
* 模板ID
|
|
11934
|
+
*
|
|
11935
|
+
* @type string
|
|
11936
|
+
*/
|
|
11937
|
+
tmplId?: string;
|
|
11938
|
+
}
|
|
10073
11939
|
export interface OfProcessJumpRequest {
|
|
10074
11940
|
/**
|
|
10075
|
-
* 点击的按钮的key
|
|
11941
|
+
* 点击的按钮的key
|
|
10076
11942
|
*
|
|
10077
11943
|
* @type string
|
|
10078
11944
|
*/
|
|
@@ -10089,6 +11955,12 @@ export interface OfProcessJumpRequest {
|
|
|
10089
11955
|
* @type Record<string, unknown>
|
|
10090
11956
|
*/
|
|
10091
11957
|
data?: Record<string, unknown>;
|
|
11958
|
+
/**
|
|
11959
|
+
* 跳转模式:下一个节点:NextNode、开始节点:StartNode、结束节点:EndNode
|
|
11960
|
+
*
|
|
11961
|
+
* @type string
|
|
11962
|
+
*/
|
|
11963
|
+
jumpMode?: string;
|
|
10092
11964
|
/**
|
|
10093
11965
|
* 在线表单实例id
|
|
10094
11966
|
*
|
|
@@ -10289,6 +12161,12 @@ export interface OfProcessReturn4InterfereRequest {
|
|
|
10289
12161
|
taskId?: string;
|
|
10290
12162
|
}
|
|
10291
12163
|
export interface OfProcessReturnRequest {
|
|
12164
|
+
/**
|
|
12165
|
+
* 点击的按钮key
|
|
12166
|
+
*
|
|
12167
|
+
* @type string
|
|
12168
|
+
*/
|
|
12169
|
+
btnKey?: string;
|
|
10292
12170
|
/**
|
|
10293
12171
|
* 操作的按钮配置
|
|
10294
12172
|
*
|
|
@@ -10327,6 +12205,12 @@ export interface OfProcessReturnRequest {
|
|
|
10327
12205
|
taskId?: string;
|
|
10328
12206
|
}
|
|
10329
12207
|
export interface OfProcessSaveRequest {
|
|
12208
|
+
/**
|
|
12209
|
+
* 是否自动保存 true是、false否
|
|
12210
|
+
*
|
|
12211
|
+
* @type boolean
|
|
12212
|
+
*/
|
|
12213
|
+
auto?: boolean;
|
|
10330
12214
|
/**
|
|
10331
12215
|
* 操作的按钮配置
|
|
10332
12216
|
*
|
|
@@ -10844,17 +12728,17 @@ export interface OnlineFormInsTaskRequest {
|
|
|
10844
12728
|
*/
|
|
10845
12729
|
formType?: string;
|
|
10846
12730
|
/**
|
|
10847
|
-
*
|
|
12731
|
+
* 填报人员范围
|
|
10848
12732
|
*
|
|
10849
12733
|
* @type string
|
|
10850
12734
|
*/
|
|
10851
|
-
|
|
12735
|
+
operatorRange?: string;
|
|
10852
12736
|
/**
|
|
10853
|
-
*
|
|
12737
|
+
* 关联批次
|
|
10854
12738
|
*
|
|
10855
12739
|
* @type string
|
|
10856
12740
|
*/
|
|
10857
|
-
|
|
12741
|
+
relatedMaterialNo?: string;
|
|
10858
12742
|
/**
|
|
10859
12743
|
* 任务标题
|
|
10860
12744
|
*
|
|
@@ -10960,7 +12844,13 @@ export interface OnlineFormInstance {
|
|
|
10960
12844
|
*
|
|
10961
12845
|
* @type number
|
|
10962
12846
|
*/
|
|
10963
|
-
deleted?: number;
|
|
12847
|
+
deleted?: number;
|
|
12848
|
+
/**
|
|
12849
|
+
*
|
|
12850
|
+
*
|
|
12851
|
+
* @type string
|
|
12852
|
+
*/
|
|
12853
|
+
description?: string;
|
|
10964
12854
|
/**
|
|
10965
12855
|
*
|
|
10966
12856
|
*
|
|
@@ -11057,6 +12947,12 @@ export interface OnlineFormInstance {
|
|
|
11057
12947
|
* @type string
|
|
11058
12948
|
*/
|
|
11059
12949
|
modifyUserName?: string;
|
|
12950
|
+
/**
|
|
12951
|
+
*
|
|
12952
|
+
*
|
|
12953
|
+
* @type string
|
|
12954
|
+
*/
|
|
12955
|
+
ofCode?: string;
|
|
11060
12956
|
/**
|
|
11061
12957
|
*
|
|
11062
12958
|
*
|
|
@@ -11081,6 +12977,12 @@ export interface OnlineFormInstance {
|
|
|
11081
12977
|
* @type string
|
|
11082
12978
|
*/
|
|
11083
12979
|
operatorId?: string;
|
|
12980
|
+
/**
|
|
12981
|
+
*
|
|
12982
|
+
*
|
|
12983
|
+
* @type string
|
|
12984
|
+
*/
|
|
12985
|
+
operatorRange?: string;
|
|
11084
12986
|
/**
|
|
11085
12987
|
*
|
|
11086
12988
|
*
|
|
@@ -11105,12 +13007,24 @@ export interface OnlineFormInstance {
|
|
|
11105
13007
|
* @type string
|
|
11106
13008
|
*/
|
|
11107
13009
|
productName?: string;
|
|
13010
|
+
/**
|
|
13011
|
+
*
|
|
13012
|
+
*
|
|
13013
|
+
* @type string
|
|
13014
|
+
*/
|
|
13015
|
+
relatedMaterialNo?: string;
|
|
11108
13016
|
/**
|
|
11109
13017
|
*
|
|
11110
13018
|
*
|
|
11111
13019
|
* @type string
|
|
11112
13020
|
*/
|
|
11113
13021
|
runtimeJson?: string;
|
|
13022
|
+
/**
|
|
13023
|
+
*
|
|
13024
|
+
*
|
|
13025
|
+
* @type string
|
|
13026
|
+
*/
|
|
13027
|
+
runtimeJsonHash?: string;
|
|
11114
13028
|
/**
|
|
11115
13029
|
*
|
|
11116
13030
|
*
|
|
@@ -11375,6 +13289,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
11375
13289
|
* @type string
|
|
11376
13290
|
*/
|
|
11377
13291
|
dataStatus?: string;
|
|
13292
|
+
/**
|
|
13293
|
+
* 备注
|
|
13294
|
+
*
|
|
13295
|
+
* @type string
|
|
13296
|
+
*/
|
|
13297
|
+
description?: string;
|
|
11378
13298
|
/**
|
|
11379
13299
|
* 表单设计json
|
|
11380
13300
|
*
|
|
@@ -11453,6 +13373,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
11453
13373
|
* @type string
|
|
11454
13374
|
*/
|
|
11455
13375
|
modifyUserName?: string;
|
|
13376
|
+
/**
|
|
13377
|
+
* 在线表单code
|
|
13378
|
+
*
|
|
13379
|
+
* @type string
|
|
13380
|
+
*/
|
|
13381
|
+
ofCode?: string;
|
|
11456
13382
|
/**
|
|
11457
13383
|
*
|
|
11458
13384
|
*
|
|
@@ -11495,6 +13421,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
11495
13421
|
* @type string
|
|
11496
13422
|
*/
|
|
11497
13423
|
productName?: string;
|
|
13424
|
+
/**
|
|
13425
|
+
* 关联批次
|
|
13426
|
+
*
|
|
13427
|
+
* @type string
|
|
13428
|
+
*/
|
|
13429
|
+
relatedMaterialNo?: string;
|
|
11498
13430
|
/**
|
|
11499
13431
|
* 表单运行时json
|
|
11500
13432
|
*
|
|
@@ -11550,6 +13482,26 @@ export interface OnlineFormInstanceResponse {
|
|
|
11550
13482
|
*/
|
|
11551
13483
|
viewType?: string;
|
|
11552
13484
|
}
|
|
13485
|
+
export interface OnlineFormInstanceTmplRelationResponse {
|
|
13486
|
+
/**
|
|
13487
|
+
* edhr实例
|
|
13488
|
+
*
|
|
13489
|
+
* @type unknown
|
|
13490
|
+
*/
|
|
13491
|
+
edhrInstance?: unknown;
|
|
13492
|
+
/**
|
|
13493
|
+
* 表单实例对象
|
|
13494
|
+
*
|
|
13495
|
+
* @type OnlineFormInstanceResponse[]
|
|
13496
|
+
*/
|
|
13497
|
+
ofInstances?: OnlineFormInstanceResponse[];
|
|
13498
|
+
/**
|
|
13499
|
+
* 表单模板
|
|
13500
|
+
*
|
|
13501
|
+
* @type unknown
|
|
13502
|
+
*/
|
|
13503
|
+
ofTmpl?: unknown;
|
|
13504
|
+
}
|
|
11553
13505
|
export interface OnlineFormLogResponse {
|
|
11554
13506
|
/**
|
|
11555
13507
|
* 操作按钮的类型
|
|
@@ -11617,6 +13569,12 @@ export interface OnlineFormLogResponse {
|
|
|
11617
13569
|
* @type string
|
|
11618
13570
|
*/
|
|
11619
13571
|
modifyUserName?: string;
|
|
13572
|
+
/**
|
|
13573
|
+
* 流程类型: 电子表单审批 OF_APPROVE、文控审批 DOC_CONTROL_APPROVE
|
|
13574
|
+
*
|
|
13575
|
+
* @type string
|
|
13576
|
+
*/
|
|
13577
|
+
procDefType?: string;
|
|
11620
13578
|
/**
|
|
11621
13579
|
* 在线表单模板ID
|
|
11622
13580
|
*
|
|
@@ -11955,6 +13913,12 @@ export interface OnlineFormTmplRequest {
|
|
|
11955
13913
|
* @type string
|
|
11956
13914
|
*/
|
|
11957
13915
|
name?: string;
|
|
13916
|
+
/**
|
|
13917
|
+
* 电子记录-线下版本号
|
|
13918
|
+
*
|
|
13919
|
+
* @type string
|
|
13920
|
+
*/
|
|
13921
|
+
offlineVersion?: string;
|
|
11958
13922
|
/**
|
|
11959
13923
|
* 操作
|
|
11960
13924
|
*
|
|
@@ -12029,6 +13993,12 @@ export interface OnlineFormTmplResponse {
|
|
|
12029
13993
|
* @type string
|
|
12030
13994
|
*/
|
|
12031
13995
|
code?: string;
|
|
13996
|
+
/**
|
|
13997
|
+
* 受控状态(UNCONTROLLED:期初,RUNNING:受控中,CONTROLLED:已受控)
|
|
13998
|
+
*
|
|
13999
|
+
* @type string
|
|
14000
|
+
*/
|
|
14001
|
+
controlStatus?: string;
|
|
12032
14002
|
/**
|
|
12033
14003
|
*
|
|
12034
14004
|
*
|
|
@@ -12143,6 +14113,12 @@ export interface OnlineFormTmplResponse {
|
|
|
12143
14113
|
* @type string
|
|
12144
14114
|
*/
|
|
12145
14115
|
name?: string;
|
|
14116
|
+
/**
|
|
14117
|
+
* 线下版本号
|
|
14118
|
+
*
|
|
14119
|
+
* @type string
|
|
14120
|
+
*/
|
|
14121
|
+
offlineVersion?: string;
|
|
12146
14122
|
/**
|
|
12147
14123
|
* 操作
|
|
12148
14124
|
*
|
|
@@ -12717,6 +14693,12 @@ export interface OrgCreateAndAddUserRequest {
|
|
|
12717
14693
|
* @type boolean
|
|
12718
14694
|
*/
|
|
12719
14695
|
platSeat?: boolean;
|
|
14696
|
+
/**
|
|
14697
|
+
*
|
|
14698
|
+
*
|
|
14699
|
+
* @type string
|
|
14700
|
+
*/
|
|
14701
|
+
signPassword?: string;
|
|
12720
14702
|
/**
|
|
12721
14703
|
* 签名照片
|
|
12722
14704
|
*
|
|
@@ -13097,6 +15079,24 @@ export interface OrgUserResponse {
|
|
|
13097
15079
|
* @type string
|
|
13098
15080
|
*/
|
|
13099
15081
|
mobile?: string;
|
|
15082
|
+
/**
|
|
15083
|
+
* 修改时间
|
|
15084
|
+
*
|
|
15085
|
+
* @type string
|
|
15086
|
+
*/
|
|
15087
|
+
modifyTime?: string;
|
|
15088
|
+
/**
|
|
15089
|
+
*
|
|
15090
|
+
*
|
|
15091
|
+
* @type string
|
|
15092
|
+
*/
|
|
15093
|
+
modifyUserId?: string;
|
|
15094
|
+
/**
|
|
15095
|
+
*
|
|
15096
|
+
*
|
|
15097
|
+
* @type string
|
|
15098
|
+
*/
|
|
15099
|
+
modifyUserName?: string;
|
|
13100
15100
|
/**
|
|
13101
15101
|
* 部门id
|
|
13102
15102
|
*
|
|
@@ -16494,6 +18494,112 @@ export interface ProcessInstance {
|
|
|
16494
18494
|
*/
|
|
16495
18495
|
title?: string;
|
|
16496
18496
|
}
|
|
18497
|
+
export interface ProcessInstanceRelationRequest {
|
|
18498
|
+
/**
|
|
18499
|
+
* 流程定义id
|
|
18500
|
+
*
|
|
18501
|
+
* @type string
|
|
18502
|
+
*/
|
|
18503
|
+
procDefId?: string;
|
|
18504
|
+
/**
|
|
18505
|
+
* 流程定义版本id()
|
|
18506
|
+
*
|
|
18507
|
+
* @type string
|
|
18508
|
+
*/
|
|
18509
|
+
procDefVerId?: string;
|
|
18510
|
+
/**
|
|
18511
|
+
* 流程实例id
|
|
18512
|
+
*
|
|
18513
|
+
* @type string
|
|
18514
|
+
*/
|
|
18515
|
+
procInstId?: string;
|
|
18516
|
+
/**
|
|
18517
|
+
* EDHR模板版本id/表单模板版本id
|
|
18518
|
+
*
|
|
18519
|
+
* @type string
|
|
18520
|
+
*/
|
|
18521
|
+
refId?: string;
|
|
18522
|
+
/**
|
|
18523
|
+
* 关联关系类型- 表单模板:FORM、edhr模板:EDHR
|
|
18524
|
+
*
|
|
18525
|
+
* @type string
|
|
18526
|
+
*/
|
|
18527
|
+
type?: string;
|
|
18528
|
+
}
|
|
18529
|
+
export interface ProcessInstanceRelationResponse {
|
|
18530
|
+
/**
|
|
18531
|
+
*
|
|
18532
|
+
*
|
|
18533
|
+
* @type string
|
|
18534
|
+
*/
|
|
18535
|
+
createTime?: string;
|
|
18536
|
+
/**
|
|
18537
|
+
*
|
|
18538
|
+
*
|
|
18539
|
+
* @type string
|
|
18540
|
+
*/
|
|
18541
|
+
createUserId?: string;
|
|
18542
|
+
/**
|
|
18543
|
+
*
|
|
18544
|
+
*
|
|
18545
|
+
* @type string
|
|
18546
|
+
*/
|
|
18547
|
+
createUserName?: string;
|
|
18548
|
+
/**
|
|
18549
|
+
* ID
|
|
18550
|
+
*
|
|
18551
|
+
* @type string
|
|
18552
|
+
*/
|
|
18553
|
+
id?: string;
|
|
18554
|
+
/**
|
|
18555
|
+
*
|
|
18556
|
+
*
|
|
18557
|
+
* @type string
|
|
18558
|
+
*/
|
|
18559
|
+
modifyTime?: string;
|
|
18560
|
+
/**
|
|
18561
|
+
*
|
|
18562
|
+
*
|
|
18563
|
+
* @type string
|
|
18564
|
+
*/
|
|
18565
|
+
modifyUserId?: string;
|
|
18566
|
+
/**
|
|
18567
|
+
*
|
|
18568
|
+
*
|
|
18569
|
+
* @type string
|
|
18570
|
+
*/
|
|
18571
|
+
modifyUserName?: string;
|
|
18572
|
+
/**
|
|
18573
|
+
* 流程定义id
|
|
18574
|
+
*
|
|
18575
|
+
* @type string
|
|
18576
|
+
*/
|
|
18577
|
+
procDefId?: string;
|
|
18578
|
+
/**
|
|
18579
|
+
* 流程定义版本id()
|
|
18580
|
+
*
|
|
18581
|
+
* @type string
|
|
18582
|
+
*/
|
|
18583
|
+
procDefVerId?: string;
|
|
18584
|
+
/**
|
|
18585
|
+
* 流程实例id
|
|
18586
|
+
*
|
|
18587
|
+
* @type string
|
|
18588
|
+
*/
|
|
18589
|
+
procInstId?: string;
|
|
18590
|
+
/**
|
|
18591
|
+
* EDHR模板版本id/表单模板版本id
|
|
18592
|
+
*
|
|
18593
|
+
* @type string
|
|
18594
|
+
*/
|
|
18595
|
+
refId?: string;
|
|
18596
|
+
/**
|
|
18597
|
+
* 关联关系类型- 表单模板:FORM、edhr模板:EDHR
|
|
18598
|
+
*
|
|
18599
|
+
* @type string
|
|
18600
|
+
*/
|
|
18601
|
+
type?: string;
|
|
18602
|
+
}
|
|
16497
18603
|
export interface ProcessInstanceRequest {
|
|
16498
18604
|
/**
|
|
16499
18605
|
* 当前处理人
|
|
@@ -17432,6 +19538,20 @@ export interface ProcessOperateRequest {
|
|
|
17432
19538
|
*/
|
|
17433
19539
|
taskId?: string;
|
|
17434
19540
|
}
|
|
19541
|
+
export interface ProcessPathDefRelationResponse {
|
|
19542
|
+
/**
|
|
19543
|
+
* 流程路径
|
|
19544
|
+
*
|
|
19545
|
+
* @type ProcessPathResponse[]
|
|
19546
|
+
*/
|
|
19547
|
+
paths?: ProcessPathResponse[];
|
|
19548
|
+
/**
|
|
19549
|
+
* 流程定义
|
|
19550
|
+
*
|
|
19551
|
+
* @type unknown
|
|
19552
|
+
*/
|
|
19553
|
+
proDefVer?: unknown;
|
|
19554
|
+
}
|
|
17435
19555
|
export interface ProcessPathResponse {
|
|
17436
19556
|
/**
|
|
17437
19557
|
* 审批状态:PENDING待处理、RUNNING进行中、COMPLETED已完成
|
|
@@ -17517,6 +19637,12 @@ export interface ProcessPathResponse {
|
|
|
17517
19637
|
* @type string
|
|
17518
19638
|
*/
|
|
17519
19639
|
ofInstanceId?: string;
|
|
19640
|
+
/**
|
|
19641
|
+
* 流程类型: 电子表单审批 OF_APPROVE、文控审批 DOC_CONTROL_APPROVE
|
|
19642
|
+
*
|
|
19643
|
+
* @type string
|
|
19644
|
+
*/
|
|
19645
|
+
procDefType?: string;
|
|
17520
19646
|
/**
|
|
17521
19647
|
* 流程定义版本ID
|
|
17522
19648
|
*
|
|
@@ -17541,6 +19667,12 @@ export interface ProcessPathResponse {
|
|
|
17541
19667
|
* @type string
|
|
17542
19668
|
*/
|
|
17543
19669
|
rangeUserExchange?: string;
|
|
19670
|
+
/**
|
|
19671
|
+
* 受控文件模板版本id
|
|
19672
|
+
*
|
|
19673
|
+
* @type string
|
|
19674
|
+
*/
|
|
19675
|
+
tmplId?: string;
|
|
17544
19676
|
}
|
|
17545
19677
|
export interface ProcessPathUserRequest {
|
|
17546
19678
|
/**
|
|
@@ -17911,6 +20043,12 @@ export interface ProcessTaskDoneResponse {
|
|
|
17911
20043
|
* @type string
|
|
17912
20044
|
*/
|
|
17913
20045
|
edhrTmplName?: string;
|
|
20046
|
+
/**
|
|
20047
|
+
* 表单类型
|
|
20048
|
+
*
|
|
20049
|
+
* @type string
|
|
20050
|
+
*/
|
|
20051
|
+
formType?: string;
|
|
17914
20052
|
/**
|
|
17915
20053
|
* 主键
|
|
17916
20054
|
*
|
|
@@ -17947,12 +20085,30 @@ export interface ProcessTaskDoneResponse {
|
|
|
17947
20085
|
* @type string
|
|
17948
20086
|
*/
|
|
17949
20087
|
modifyUserName?: string;
|
|
20088
|
+
/**
|
|
20089
|
+
* 单据code
|
|
20090
|
+
*
|
|
20091
|
+
* @type string
|
|
20092
|
+
*/
|
|
20093
|
+
ofCode?: string;
|
|
20094
|
+
/**
|
|
20095
|
+
* 单据创建人名称
|
|
20096
|
+
*
|
|
20097
|
+
* @type string
|
|
20098
|
+
*/
|
|
20099
|
+
ofCreateUserName?: string;
|
|
17950
20100
|
/**
|
|
17951
20101
|
* 表单实例id
|
|
17952
20102
|
*
|
|
17953
20103
|
* @type string
|
|
17954
20104
|
*/
|
|
17955
20105
|
ofInstanceId?: string;
|
|
20106
|
+
/**
|
|
20107
|
+
* 单据修改人名称
|
|
20108
|
+
*
|
|
20109
|
+
* @type string
|
|
20110
|
+
*/
|
|
20111
|
+
ofModifyUserName?: string;
|
|
17956
20112
|
/**
|
|
17957
20113
|
* 表单模板id
|
|
17958
20114
|
*
|
|
@@ -18087,6 +20243,12 @@ export interface ProcessTaskTodoResponse {
|
|
|
18087
20243
|
* @type string
|
|
18088
20244
|
*/
|
|
18089
20245
|
edhrTmplName?: string;
|
|
20246
|
+
/**
|
|
20247
|
+
* 表单类型
|
|
20248
|
+
*
|
|
20249
|
+
* @type string
|
|
20250
|
+
*/
|
|
20251
|
+
formType?: string;
|
|
18090
20252
|
/**
|
|
18091
20253
|
* 主键
|
|
18092
20254
|
*
|
|
@@ -18123,12 +20285,30 @@ export interface ProcessTaskTodoResponse {
|
|
|
18123
20285
|
* @type string
|
|
18124
20286
|
*/
|
|
18125
20287
|
modifyUserName?: string;
|
|
20288
|
+
/**
|
|
20289
|
+
* 单据code
|
|
20290
|
+
*
|
|
20291
|
+
* @type string
|
|
20292
|
+
*/
|
|
20293
|
+
ofCode?: string;
|
|
20294
|
+
/**
|
|
20295
|
+
* 单据创建人名称
|
|
20296
|
+
*
|
|
20297
|
+
* @type string
|
|
20298
|
+
*/
|
|
20299
|
+
ofCreateUserName?: string;
|
|
18126
20300
|
/**
|
|
18127
20301
|
* 表单实例id
|
|
18128
20302
|
*
|
|
18129
20303
|
* @type string
|
|
18130
20304
|
*/
|
|
18131
20305
|
ofInstanceId?: string;
|
|
20306
|
+
/**
|
|
20307
|
+
* 单据修改人名称
|
|
20308
|
+
*
|
|
20309
|
+
* @type string
|
|
20310
|
+
*/
|
|
20311
|
+
ofModifyUserName?: string;
|
|
18132
20312
|
/**
|
|
18133
20313
|
* 表单模板id
|
|
18134
20314
|
*
|
|
@@ -18335,6 +20515,12 @@ export interface ProcessVersionResponse {
|
|
|
18335
20515
|
xml?: string;
|
|
18336
20516
|
}
|
|
18337
20517
|
export interface ProductReleaseResponse {
|
|
20518
|
+
/**
|
|
20519
|
+
* 放行时间:普通表单:提交时间、流程表单:流程结束时间
|
|
20520
|
+
*
|
|
20521
|
+
* @type string
|
|
20522
|
+
*/
|
|
20523
|
+
completedTime?: string;
|
|
18338
20524
|
/**
|
|
18339
20525
|
*
|
|
18340
20526
|
*
|
|
@@ -22421,6 +24607,12 @@ export interface UserResponse {
|
|
|
22421
24607
|
* @type string
|
|
22422
24608
|
*/
|
|
22423
24609
|
empNo?: string;
|
|
24610
|
+
/**
|
|
24611
|
+
* 启用状态,0:禁用 1:启用 2:未激活
|
|
24612
|
+
*
|
|
24613
|
+
* @type number
|
|
24614
|
+
*/
|
|
24615
|
+
enabled?: number;
|
|
22424
24616
|
/**
|
|
22425
24617
|
* 扩展字段0
|
|
22426
24618
|
*
|
|
@@ -22693,6 +24885,12 @@ export interface UserSaveRequest {
|
|
|
22693
24885
|
* @type boolean
|
|
22694
24886
|
*/
|
|
22695
24887
|
platSeat?: boolean;
|
|
24888
|
+
/**
|
|
24889
|
+
*
|
|
24890
|
+
*
|
|
24891
|
+
* @type string
|
|
24892
|
+
*/
|
|
24893
|
+
signPassword?: string;
|
|
22696
24894
|
/**
|
|
22697
24895
|
* 签名照片
|
|
22698
24896
|
*
|
|
@@ -22997,6 +25195,12 @@ export interface UserWithUserExtraDTO {
|
|
|
22997
25195
|
* @type string
|
|
22998
25196
|
*/
|
|
22999
25197
|
platTicket?: string;
|
|
25198
|
+
/**
|
|
25199
|
+
*
|
|
25200
|
+
*
|
|
25201
|
+
* @type string
|
|
25202
|
+
*/
|
|
25203
|
+
signPassword?: string;
|
|
23000
25204
|
/**
|
|
23001
25205
|
*
|
|
23002
25206
|
*
|