@gct-paas/api 0.1.6-dev.13 → 0.1.6-dev.15
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 +171 -2
- package/es/apaas/service/apis/app-global-settings.service.d.ts +0 -4
- package/es/apaas/service/apis/edhr-instance.service.d.ts +8 -0
- package/es/apaas/service/apis/enum-model-field.service.d.ts +8 -0
- package/es/apaas/service/apis/excel-tmpl.service.d.ts +8 -0
- package/es/apaas/service/apis/excel.service.d.ts +2 -2
- package/es/apaas/service/apis/field-meta.service.d.ts +13 -0
- package/es/apaas/service/apis/model-meta.service.d.ts +17 -0
- package/es/apaas/service/apis/model-method.service.d.ts +19 -1
- package/es/apaas/service/apis/online-form-instance.service.d.ts +12 -4
- package/es/apaas/service/apis/print.service.d.ts +1 -1
- package/es/apaas/service/apis/process-approval-log.service.d.ts +1 -1
- package/es/apaas/service/apis/trace-log-details.service.d.ts +12 -0
- package/es/apaas/service/entities.d.ts +798 -14
- package/es/apaas/service/index.d.ts +4 -0
- package/es/empty.d.ts +2 -0
- package/es/empty.mjs +1 -0
- package/es/platform/service/api-config.mjs +28 -0
- package/es/platform/service/apis/api.service.d.ts +38 -1
- package/es/platform/service/apis/app.service.d.ts +4 -0
- package/es/platform/service/apis/dashboard.service.d.ts +0 -4
- package/es/platform/service/apis/login-log.service.d.ts +13 -0
- package/es/platform/service/apis/plat.service.d.ts +7 -0
- package/es/platform/service/entities.d.ts +380 -22
- package/package.json +17 -10
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export interface AccountConfig {
|
|
2
2
|
/**
|
|
3
|
-
* 应用类型 枚举(钉钉 DINGDING
|
|
3
|
+
* 应用类型 枚举 (钉钉 DINGDING,企微 QIYEWEIXIN,飞书 FEISHU,微软 MICROSOFT)
|
|
4
4
|
*
|
|
5
5
|
* @type string
|
|
6
6
|
*/
|
|
@@ -1785,6 +1785,12 @@ export interface CategoryCompleteResponse {
|
|
|
1785
1785
|
* @type RelationResponse[]
|
|
1786
1786
|
*/
|
|
1787
1787
|
children?: RelationResponse[];
|
|
1788
|
+
/**
|
|
1789
|
+
* 创建人
|
|
1790
|
+
*
|
|
1791
|
+
* @type string
|
|
1792
|
+
*/
|
|
1793
|
+
createUserId?: string;
|
|
1788
1794
|
/**
|
|
1789
1795
|
* 是否子版本
|
|
1790
1796
|
*
|
|
@@ -4636,6 +4642,124 @@ export interface DesignerOperateLogResponse {
|
|
|
4636
4642
|
*/
|
|
4637
4643
|
requestInfo?: string;
|
|
4638
4644
|
}
|
|
4645
|
+
export interface DetailPageRequest {
|
|
4646
|
+
/**
|
|
4647
|
+
* 页面描述
|
|
4648
|
+
*
|
|
4649
|
+
* @type string
|
|
4650
|
+
*/
|
|
4651
|
+
description?: string;
|
|
4652
|
+
/**
|
|
4653
|
+
* 页面设计json
|
|
4654
|
+
*
|
|
4655
|
+
* @type string
|
|
4656
|
+
*/
|
|
4657
|
+
designerJson?: string;
|
|
4658
|
+
/**
|
|
4659
|
+
* 页面key
|
|
4660
|
+
*
|
|
4661
|
+
* @type string
|
|
4662
|
+
*/
|
|
4663
|
+
key?: string;
|
|
4664
|
+
/**
|
|
4665
|
+
* 页面名称
|
|
4666
|
+
*
|
|
4667
|
+
* @type string
|
|
4668
|
+
*/
|
|
4669
|
+
name?: string;
|
|
4670
|
+
/**
|
|
4671
|
+
* 运行时json
|
|
4672
|
+
*
|
|
4673
|
+
* @type string
|
|
4674
|
+
*/
|
|
4675
|
+
runtimeJson?: string;
|
|
4676
|
+
}
|
|
4677
|
+
export interface DetailPageResponse {
|
|
4678
|
+
/**
|
|
4679
|
+
*
|
|
4680
|
+
*
|
|
4681
|
+
* @type string
|
|
4682
|
+
*/
|
|
4683
|
+
createTime?: string;
|
|
4684
|
+
/**
|
|
4685
|
+
*
|
|
4686
|
+
*
|
|
4687
|
+
* @type string
|
|
4688
|
+
*/
|
|
4689
|
+
createUserId?: string;
|
|
4690
|
+
/**
|
|
4691
|
+
*
|
|
4692
|
+
*
|
|
4693
|
+
* @type string
|
|
4694
|
+
*/
|
|
4695
|
+
createUserName?: string;
|
|
4696
|
+
/**
|
|
4697
|
+
* 页面描述
|
|
4698
|
+
*
|
|
4699
|
+
* @type string
|
|
4700
|
+
*/
|
|
4701
|
+
description?: string;
|
|
4702
|
+
/**
|
|
4703
|
+
* 页面设计json
|
|
4704
|
+
*
|
|
4705
|
+
* @type string
|
|
4706
|
+
*/
|
|
4707
|
+
designerJson?: string;
|
|
4708
|
+
/**
|
|
4709
|
+
* 是否为草稿 0: 非草稿 1: 草稿
|
|
4710
|
+
*
|
|
4711
|
+
* @type number
|
|
4712
|
+
*/
|
|
4713
|
+
draft?: number;
|
|
4714
|
+
/**
|
|
4715
|
+
* 主键
|
|
4716
|
+
*
|
|
4717
|
+
* @type string
|
|
4718
|
+
*/
|
|
4719
|
+
id?: string;
|
|
4720
|
+
/**
|
|
4721
|
+
* 初始提交 id
|
|
4722
|
+
*
|
|
4723
|
+
* @type string
|
|
4724
|
+
*/
|
|
4725
|
+
initCommitId?: string;
|
|
4726
|
+
/**
|
|
4727
|
+
* 页面key
|
|
4728
|
+
*
|
|
4729
|
+
* @type string
|
|
4730
|
+
*/
|
|
4731
|
+
key?: string;
|
|
4732
|
+
/**
|
|
4733
|
+
*
|
|
4734
|
+
*
|
|
4735
|
+
* @type string
|
|
4736
|
+
*/
|
|
4737
|
+
modifyTime?: string;
|
|
4738
|
+
/**
|
|
4739
|
+
*
|
|
4740
|
+
*
|
|
4741
|
+
* @type string
|
|
4742
|
+
*/
|
|
4743
|
+
modifyUserId?: string;
|
|
4744
|
+
/**
|
|
4745
|
+
*
|
|
4746
|
+
*
|
|
4747
|
+
* @type string
|
|
4748
|
+
*/
|
|
4749
|
+
modifyUserName?: string;
|
|
4750
|
+
/**
|
|
4751
|
+
* 页面名称
|
|
4752
|
+
*
|
|
4753
|
+
* @type string
|
|
4754
|
+
*/
|
|
4755
|
+
name?: string;
|
|
4756
|
+
/**
|
|
4757
|
+
* 运行时json
|
|
4758
|
+
*
|
|
4759
|
+
* @type string
|
|
4760
|
+
*/
|
|
4761
|
+
runtimeJson?: string;
|
|
4762
|
+
}
|
|
4639
4763
|
export interface DhrProcessApproveRequest {
|
|
4640
4764
|
/**
|
|
4641
4765
|
* 点击的按钮的key
|
|
@@ -5675,6 +5799,12 @@ export interface DocControlTaskTodoResponse {
|
|
|
5675
5799
|
version?: string;
|
|
5676
5800
|
}
|
|
5677
5801
|
export interface DocOutlineBase {
|
|
5802
|
+
/**
|
|
5803
|
+
* 基础单据id(DHR ID)
|
|
5804
|
+
*
|
|
5805
|
+
* @type string
|
|
5806
|
+
*/
|
|
5807
|
+
baseId?: string;
|
|
5678
5808
|
/**
|
|
5679
5809
|
*
|
|
5680
5810
|
*
|
|
@@ -5817,6 +5947,12 @@ export interface DocOutlineResponse {
|
|
|
5817
5947
|
* @type string
|
|
5818
5948
|
*/
|
|
5819
5949
|
instanceStatus?: string;
|
|
5950
|
+
/**
|
|
5951
|
+
* 模型Key
|
|
5952
|
+
*
|
|
5953
|
+
* @type string
|
|
5954
|
+
*/
|
|
5955
|
+
modelKey?: string;
|
|
5820
5956
|
/**
|
|
5821
5957
|
*
|
|
5822
5958
|
*
|
|
@@ -5847,6 +5983,12 @@ export interface DocOutlineResponse {
|
|
|
5847
5983
|
* @type number
|
|
5848
5984
|
*/
|
|
5849
5985
|
ofRequired?: number;
|
|
5986
|
+
/**
|
|
5987
|
+
* 办公类型
|
|
5988
|
+
*
|
|
5989
|
+
* @type string
|
|
5990
|
+
*/
|
|
5991
|
+
officeType?: string;
|
|
5850
5992
|
/**
|
|
5851
5993
|
* 父节点id
|
|
5852
5994
|
*
|
|
@@ -8074,6 +8216,20 @@ export interface EnumModelFieldResponse {
|
|
|
8074
8216
|
*/
|
|
8075
8217
|
value?: string;
|
|
8076
8218
|
}
|
|
8219
|
+
export interface EnumModelFieldSortReq {
|
|
8220
|
+
/**
|
|
8221
|
+
* 枚举模型id
|
|
8222
|
+
*
|
|
8223
|
+
* @type string
|
|
8224
|
+
*/
|
|
8225
|
+
enumModelId?: string;
|
|
8226
|
+
/**
|
|
8227
|
+
*
|
|
8228
|
+
*
|
|
8229
|
+
* @type string[]
|
|
8230
|
+
*/
|
|
8231
|
+
ids?: string[];
|
|
8232
|
+
}
|
|
8077
8233
|
export interface EnumModelRequest {
|
|
8078
8234
|
/**
|
|
8079
8235
|
* 分类id
|
|
@@ -8644,6 +8800,56 @@ export interface ExcelColumnInfoV1 {
|
|
|
8644
8800
|
*/
|
|
8645
8801
|
width?: number;
|
|
8646
8802
|
}
|
|
8803
|
+
export interface ExcelTemplateAndConfigReq {
|
|
8804
|
+
/**
|
|
8805
|
+
* 模板配置
|
|
8806
|
+
*
|
|
8807
|
+
* @type ExcelTmplConfigV1[]
|
|
8808
|
+
*/
|
|
8809
|
+
configJsons?: ExcelTmplConfigV1[];
|
|
8810
|
+
/**
|
|
8811
|
+
* 执行方式 0:同步,1:异步
|
|
8812
|
+
*
|
|
8813
|
+
* @type number
|
|
8814
|
+
*/
|
|
8815
|
+
exeType?: number;
|
|
8816
|
+
/**
|
|
8817
|
+
* 模板key
|
|
8818
|
+
*
|
|
8819
|
+
* @type string
|
|
8820
|
+
*/
|
|
8821
|
+
key?: string;
|
|
8822
|
+
/**
|
|
8823
|
+
* 业务逻辑脚本key
|
|
8824
|
+
*
|
|
8825
|
+
* @type string
|
|
8826
|
+
*/
|
|
8827
|
+
lsKey?: string;
|
|
8828
|
+
/**
|
|
8829
|
+
* 模型key
|
|
8830
|
+
*
|
|
8831
|
+
* @type string
|
|
8832
|
+
*/
|
|
8833
|
+
modelKey?: string;
|
|
8834
|
+
/**
|
|
8835
|
+
* 模板名称
|
|
8836
|
+
*
|
|
8837
|
+
* @type string
|
|
8838
|
+
*/
|
|
8839
|
+
name?: string;
|
|
8840
|
+
/**
|
|
8841
|
+
* 类型:IMPORT-导入;EXPORT-导出
|
|
8842
|
+
*
|
|
8843
|
+
* @type string
|
|
8844
|
+
*/
|
|
8845
|
+
type?: string;
|
|
8846
|
+
/**
|
|
8847
|
+
* 验证规则脚本key
|
|
8848
|
+
*
|
|
8849
|
+
* @type string
|
|
8850
|
+
*/
|
|
8851
|
+
vsKey?: string;
|
|
8852
|
+
}
|
|
8647
8853
|
export interface ExcelTemplateConfigReq {
|
|
8648
8854
|
/**
|
|
8649
8855
|
* 模板配置
|
|
@@ -8973,6 +9179,12 @@ export interface ExcelTmplResponse {
|
|
|
8973
9179
|
* @type string
|
|
8974
9180
|
*/
|
|
8975
9181
|
name?: string;
|
|
9182
|
+
/**
|
|
9183
|
+
* 类型(BUILTIN:内置,后台创建 USER_DEFINED:自定义,前台创建)
|
|
9184
|
+
*
|
|
9185
|
+
* @type string
|
|
9186
|
+
*/
|
|
9187
|
+
source?: string;
|
|
8976
9188
|
/**
|
|
8977
9189
|
* 支持流程
|
|
8978
9190
|
*
|
|
@@ -9471,6 +9683,12 @@ export interface FieldMeta {
|
|
|
9471
9683
|
* @type string
|
|
9472
9684
|
*/
|
|
9473
9685
|
bindInfo?: string;
|
|
9686
|
+
/**
|
|
9687
|
+
* 业务字段类型
|
|
9688
|
+
*
|
|
9689
|
+
* @type string
|
|
9690
|
+
*/
|
|
9691
|
+
bizType?: string;
|
|
9474
9692
|
/**
|
|
9475
9693
|
*
|
|
9476
9694
|
*
|
|
@@ -9693,6 +9911,12 @@ export interface FieldMetaDTO {
|
|
|
9693
9911
|
* @type string
|
|
9694
9912
|
*/
|
|
9695
9913
|
bindInfo?: string;
|
|
9914
|
+
/**
|
|
9915
|
+
* 业务字段类型
|
|
9916
|
+
*
|
|
9917
|
+
* @type string
|
|
9918
|
+
*/
|
|
9919
|
+
bizType?: string;
|
|
9696
9920
|
/**
|
|
9697
9921
|
*
|
|
9698
9922
|
*
|
|
@@ -10209,6 +10433,12 @@ export interface FieldMetaVO {
|
|
|
10209
10433
|
* @type string
|
|
10210
10434
|
*/
|
|
10211
10435
|
bindInfo?: string;
|
|
10436
|
+
/**
|
|
10437
|
+
* 业务字段类型
|
|
10438
|
+
*
|
|
10439
|
+
* @type string
|
|
10440
|
+
*/
|
|
10441
|
+
bizType?: string;
|
|
10212
10442
|
/**
|
|
10213
10443
|
* 默认值
|
|
10214
10444
|
*
|
|
@@ -10373,6 +10603,12 @@ export interface FileResourceResponse {
|
|
|
10373
10603
|
url?: string;
|
|
10374
10604
|
}
|
|
10375
10605
|
export interface FileTaskDTO {
|
|
10606
|
+
/**
|
|
10607
|
+
* 是否包含半成品批次(当type为EDHR时使用,用于判断打印时是否需要打印半成品批次eDHR)
|
|
10608
|
+
*
|
|
10609
|
+
* @type boolean
|
|
10610
|
+
*/
|
|
10611
|
+
includeSemi?: boolean;
|
|
10376
10612
|
/**
|
|
10377
10613
|
* 模板实例id
|
|
10378
10614
|
*
|
|
@@ -13420,11 +13656,17 @@ export interface MenuPermissionDTO {
|
|
|
13420
13656
|
}
|
|
13421
13657
|
export interface MergeConflictDTO {
|
|
13422
13658
|
/**
|
|
13423
|
-
* 最终选择: SOURCE/TARGET
|
|
13659
|
+
* 最终选择: SOURCE/TARGET/MERGED
|
|
13424
13660
|
*
|
|
13425
13661
|
* @type string
|
|
13426
13662
|
*/
|
|
13427
13663
|
choice?: string;
|
|
13664
|
+
/**
|
|
13665
|
+
* 合并内容json
|
|
13666
|
+
*
|
|
13667
|
+
* @type string
|
|
13668
|
+
*/
|
|
13669
|
+
mergeResult?: string;
|
|
13428
13670
|
/**
|
|
13429
13671
|
* 主键值
|
|
13430
13672
|
*
|
|
@@ -13917,6 +14159,22 @@ export interface MessageRecordResponse {
|
|
|
13917
14159
|
* @type string
|
|
13918
14160
|
*/
|
|
13919
14161
|
resultMsg?: string;
|
|
14162
|
+
/**
|
|
14163
|
+
* 跳转配置: {
|
|
14164
|
+
"WEB": {"id":"菜单id","name":"菜单名称"},
|
|
14165
|
+
"MOBILE": {"id":"菜单id","name":"菜单名称"},
|
|
14166
|
+
"PAD": {"id":"菜单id","name":"菜单名称"}
|
|
14167
|
+
}
|
|
14168
|
+
*
|
|
14169
|
+
* @type string
|
|
14170
|
+
*/
|
|
14171
|
+
routerConfig?: string;
|
|
14172
|
+
/**
|
|
14173
|
+
* 跳转参数:由调用全局方法方传递
|
|
14174
|
+
*
|
|
14175
|
+
* @type string
|
|
14176
|
+
*/
|
|
14177
|
+
routerParams?: string;
|
|
13920
14178
|
/**
|
|
13921
14179
|
* 租户id
|
|
13922
14180
|
*
|
|
@@ -14041,6 +14299,16 @@ export interface MessageTmplRequest {
|
|
|
14041
14299
|
* @type string
|
|
14042
14300
|
*/
|
|
14043
14301
|
rangUser?: string;
|
|
14302
|
+
/**
|
|
14303
|
+
* 跳转配置: {
|
|
14304
|
+
"WEB": {"id":"菜单id","name":"菜单名称"},
|
|
14305
|
+
"MOBILE": {"id":"菜单id","name":"菜单名称"},
|
|
14306
|
+
"PAD": {"id":"菜单id","name":"菜单名称"}
|
|
14307
|
+
}
|
|
14308
|
+
*
|
|
14309
|
+
* @type string
|
|
14310
|
+
*/
|
|
14311
|
+
routerConfig?: string;
|
|
14044
14312
|
/**
|
|
14045
14313
|
* 租户id
|
|
14046
14314
|
*
|
|
@@ -14157,6 +14425,16 @@ export interface MessageTmplResponse {
|
|
|
14157
14425
|
* @type string
|
|
14158
14426
|
*/
|
|
14159
14427
|
pushType?: string;
|
|
14428
|
+
/**
|
|
14429
|
+
* 跳转配置: {
|
|
14430
|
+
"WEB": {"id":"菜单id","name":"菜单名称"},
|
|
14431
|
+
"MOBILE": {"id":"菜单id","name":"菜单名称"},
|
|
14432
|
+
"PAD": {"id":"菜单id","name":"菜单名称"}
|
|
14433
|
+
}
|
|
14434
|
+
*
|
|
14435
|
+
* @type string
|
|
14436
|
+
*/
|
|
14437
|
+
routerConfig?: string;
|
|
14160
14438
|
/**
|
|
14161
14439
|
* 租户id
|
|
14162
14440
|
*
|
|
@@ -14315,6 +14593,18 @@ export interface MessageTmplSendRequest {
|
|
|
14315
14593
|
* @type string
|
|
14316
14594
|
*/
|
|
14317
14595
|
rangUser?: string;
|
|
14596
|
+
/**
|
|
14597
|
+
*
|
|
14598
|
+
*
|
|
14599
|
+
* @type string
|
|
14600
|
+
*/
|
|
14601
|
+
routerConfig?: string;
|
|
14602
|
+
/**
|
|
14603
|
+
*
|
|
14604
|
+
*
|
|
14605
|
+
* @type string
|
|
14606
|
+
*/
|
|
14607
|
+
routerParams?: string;
|
|
14318
14608
|
/**
|
|
14319
14609
|
* 支持流程
|
|
14320
14610
|
*
|
|
@@ -14969,6 +15259,12 @@ export interface ModelMeta {
|
|
|
14969
15259
|
* @type string
|
|
14970
15260
|
*/
|
|
14971
15261
|
displayField?: string;
|
|
15262
|
+
/**
|
|
15263
|
+
*
|
|
15264
|
+
*
|
|
15265
|
+
* @type string
|
|
15266
|
+
*/
|
|
15267
|
+
foreignTable?: string;
|
|
14972
15268
|
/**
|
|
14973
15269
|
*
|
|
14974
15270
|
*
|
|
@@ -15047,6 +15343,12 @@ export interface ModelMeta {
|
|
|
15047
15343
|
* @type string
|
|
15048
15344
|
*/
|
|
15049
15345
|
refModelKey?: string;
|
|
15346
|
+
/**
|
|
15347
|
+
*
|
|
15348
|
+
*
|
|
15349
|
+
* @type number
|
|
15350
|
+
*/
|
|
15351
|
+
shared?: number;
|
|
15050
15352
|
/**
|
|
15051
15353
|
*
|
|
15052
15354
|
*
|
|
@@ -15163,6 +15465,12 @@ export interface ModelMetaDTO {
|
|
|
15163
15465
|
* @type FieldMetaDTO[]
|
|
15164
15466
|
*/
|
|
15165
15467
|
fieldMetaList?: FieldMetaDTO[];
|
|
15468
|
+
/**
|
|
15469
|
+
*
|
|
15470
|
+
*
|
|
15471
|
+
* @type string
|
|
15472
|
+
*/
|
|
15473
|
+
foreignTable?: string;
|
|
15166
15474
|
/**
|
|
15167
15475
|
*
|
|
15168
15476
|
*
|
|
@@ -15253,6 +15561,12 @@ export interface ModelMetaDTO {
|
|
|
15253
15561
|
* @type string
|
|
15254
15562
|
*/
|
|
15255
15563
|
refModelKey?: string;
|
|
15564
|
+
/**
|
|
15565
|
+
*
|
|
15566
|
+
*
|
|
15567
|
+
* @type number
|
|
15568
|
+
*/
|
|
15569
|
+
shared?: number;
|
|
15256
15570
|
/**
|
|
15257
15571
|
*
|
|
15258
15572
|
*
|
|
@@ -15389,6 +15703,12 @@ export interface ModelMetaResponse {
|
|
|
15389
15703
|
* @type PruneFieldMetaResponse[]
|
|
15390
15704
|
*/
|
|
15391
15705
|
fieldMetas?: PruneFieldMetaResponse[];
|
|
15706
|
+
/**
|
|
15707
|
+
*
|
|
15708
|
+
*
|
|
15709
|
+
* @type string
|
|
15710
|
+
*/
|
|
15711
|
+
foreignTable?: string;
|
|
15392
15712
|
/**
|
|
15393
15713
|
* 主键
|
|
15394
15714
|
*
|
|
@@ -15455,6 +15775,12 @@ export interface ModelMetaResponse {
|
|
|
15455
15775
|
* @type string
|
|
15456
15776
|
*/
|
|
15457
15777
|
refModelKey?: string;
|
|
15778
|
+
/**
|
|
15779
|
+
* 是否主模型(0: 否 1: 是)
|
|
15780
|
+
*
|
|
15781
|
+
* @type number
|
|
15782
|
+
*/
|
|
15783
|
+
shared?: number;
|
|
15458
15784
|
/**
|
|
15459
15785
|
* 特殊配置
|
|
15460
15786
|
*
|
|
@@ -17287,6 +17613,12 @@ export interface OnlineFormFieldMetaVO {
|
|
|
17287
17613
|
* @type string
|
|
17288
17614
|
*/
|
|
17289
17615
|
bindInfo?: string;
|
|
17616
|
+
/**
|
|
17617
|
+
* 业务字段类型
|
|
17618
|
+
*
|
|
17619
|
+
* @type string
|
|
17620
|
+
*/
|
|
17621
|
+
bizType?: string;
|
|
17290
17622
|
/**
|
|
17291
17623
|
* 默认值
|
|
17292
17624
|
*
|
|
@@ -17973,6 +18305,12 @@ export interface OnlineFormInstanceDTO {
|
|
|
17973
18305
|
* @type string
|
|
17974
18306
|
*/
|
|
17975
18307
|
ofCode?: string;
|
|
18308
|
+
/**
|
|
18309
|
+
*
|
|
18310
|
+
*
|
|
18311
|
+
* @type string
|
|
18312
|
+
*/
|
|
18313
|
+
officeType?: string;
|
|
17976
18314
|
/**
|
|
17977
18315
|
*
|
|
17978
18316
|
*
|
|
@@ -18217,6 +18555,12 @@ export interface OnlineFormInstanceRequest {
|
|
|
18217
18555
|
* @type string
|
|
18218
18556
|
*/
|
|
18219
18557
|
modelKey?: string;
|
|
18558
|
+
/**
|
|
18559
|
+
*
|
|
18560
|
+
*
|
|
18561
|
+
* @type string
|
|
18562
|
+
*/
|
|
18563
|
+
officeType?: string;
|
|
18220
18564
|
/**
|
|
18221
18565
|
* 实例参数(业务扩展属性)
|
|
18222
18566
|
*
|
|
@@ -18309,6 +18653,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
18309
18653
|
* @type string
|
|
18310
18654
|
*/
|
|
18311
18655
|
designerJson?: string;
|
|
18656
|
+
/**
|
|
18657
|
+
*
|
|
18658
|
+
*
|
|
18659
|
+
* @type string
|
|
18660
|
+
*/
|
|
18661
|
+
direction?: string;
|
|
18312
18662
|
/**
|
|
18313
18663
|
*
|
|
18314
18664
|
*
|
|
@@ -18381,6 +18731,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
18381
18731
|
* @type string
|
|
18382
18732
|
*/
|
|
18383
18733
|
formType?: string;
|
|
18734
|
+
/**
|
|
18735
|
+
*
|
|
18736
|
+
*
|
|
18737
|
+
* @type number
|
|
18738
|
+
*/
|
|
18739
|
+
height?: number;
|
|
18384
18740
|
/**
|
|
18385
18741
|
* 主键ID
|
|
18386
18742
|
*
|
|
@@ -18483,6 +18839,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
18483
18839
|
* @type string
|
|
18484
18840
|
*/
|
|
18485
18841
|
operatorRange?: string;
|
|
18842
|
+
/**
|
|
18843
|
+
*
|
|
18844
|
+
*
|
|
18845
|
+
* @type string
|
|
18846
|
+
*/
|
|
18847
|
+
paperSize?: string;
|
|
18486
18848
|
/**
|
|
18487
18849
|
* 实例参数(业务扩展属性)
|
|
18488
18850
|
*
|
|
@@ -18621,6 +18983,12 @@ export interface OnlineFormInstanceResponse {
|
|
|
18621
18983
|
* @type string
|
|
18622
18984
|
*/
|
|
18623
18985
|
viewType?: string;
|
|
18986
|
+
/**
|
|
18987
|
+
*
|
|
18988
|
+
*
|
|
18989
|
+
* @type number
|
|
18990
|
+
*/
|
|
18991
|
+
width?: number;
|
|
18624
18992
|
}
|
|
18625
18993
|
export interface OnlineFormInstanceTmplRelationResponse {
|
|
18626
18994
|
/**
|
|
@@ -22231,12 +22599,6 @@ export interface PrintAdapterDTO {
|
|
|
22231
22599
|
* @type string
|
|
22232
22600
|
*/
|
|
22233
22601
|
env?: string;
|
|
22234
|
-
/**
|
|
22235
|
-
* 打印控制参数
|
|
22236
|
-
*
|
|
22237
|
-
* @type IObject
|
|
22238
|
-
*/
|
|
22239
|
-
param?: IObject;
|
|
22240
22602
|
/**
|
|
22241
22603
|
* 触发打印的应用id
|
|
22242
22604
|
*
|
|
@@ -22367,12 +22729,6 @@ export interface PrintLogResponse {
|
|
|
22367
22729
|
* @type string
|
|
22368
22730
|
*/
|
|
22369
22731
|
modifyUserName?: string;
|
|
22370
|
-
/**
|
|
22371
|
-
* 打印控制参数
|
|
22372
|
-
*
|
|
22373
|
-
* @type IObject
|
|
22374
|
-
*/
|
|
22375
|
-
param?: IObject;
|
|
22376
22732
|
/**
|
|
22377
22733
|
* 触发打印的应用id
|
|
22378
22734
|
*
|
|
@@ -25981,6 +26337,24 @@ export interface ProcessPathResponse {
|
|
|
25981
26337
|
* @type string
|
|
25982
26338
|
*/
|
|
25983
26339
|
tmplId?: string;
|
|
26340
|
+
/**
|
|
26341
|
+
* 事务定义id
|
|
26342
|
+
*
|
|
26343
|
+
* @type string
|
|
26344
|
+
*/
|
|
26345
|
+
txnDefinitionId?: string;
|
|
26346
|
+
/**
|
|
26347
|
+
* 事务实例id
|
|
26348
|
+
*
|
|
26349
|
+
* @type string
|
|
26350
|
+
*/
|
|
26351
|
+
txnInstId?: string;
|
|
26352
|
+
/**
|
|
26353
|
+
* 事务实例状态
|
|
26354
|
+
*
|
|
26355
|
+
* @type string
|
|
26356
|
+
*/
|
|
26357
|
+
txnInstStatus?: string;
|
|
25984
26358
|
}
|
|
25985
26359
|
export interface ProcessPathUserRequest {
|
|
25986
26360
|
/**
|
|
@@ -29953,6 +30327,12 @@ export interface RelationResponse {
|
|
|
29953
30327
|
* @type RelationResponse[]
|
|
29954
30328
|
*/
|
|
29955
30329
|
children?: RelationResponse[];
|
|
30330
|
+
/**
|
|
30331
|
+
* 创建人
|
|
30332
|
+
*
|
|
30333
|
+
* @type string
|
|
30334
|
+
*/
|
|
30335
|
+
createUserId?: string;
|
|
29956
30336
|
/**
|
|
29957
30337
|
* 实体模型的默认显示字段
|
|
29958
30338
|
*
|
|
@@ -29989,6 +30369,12 @@ export interface RelationResponse {
|
|
|
29989
30369
|
* @type string
|
|
29990
30370
|
*/
|
|
29991
30371
|
name?: string;
|
|
30372
|
+
/**
|
|
30373
|
+
* 是否主模型(0: 否 1: 是)
|
|
30374
|
+
*
|
|
30375
|
+
* @type number
|
|
30376
|
+
*/
|
|
30377
|
+
shared?: number;
|
|
29992
30378
|
/**
|
|
29993
30379
|
* 排序
|
|
29994
30380
|
*
|
|
@@ -34394,6 +34780,398 @@ export interface TraceSettingResponse {
|
|
|
34394
34780
|
*/
|
|
34395
34781
|
treeData?: object[];
|
|
34396
34782
|
}
|
|
34783
|
+
export interface TransactionDTO {
|
|
34784
|
+
/**
|
|
34785
|
+
*
|
|
34786
|
+
*
|
|
34787
|
+
* @type TransactionVersion[]
|
|
34788
|
+
*/
|
|
34789
|
+
children?: TransactionVersion[];
|
|
34790
|
+
/**
|
|
34791
|
+
*
|
|
34792
|
+
*
|
|
34793
|
+
* @type string
|
|
34794
|
+
*/
|
|
34795
|
+
createTime?: string;
|
|
34796
|
+
/**
|
|
34797
|
+
*
|
|
34798
|
+
*
|
|
34799
|
+
* @type string
|
|
34800
|
+
*/
|
|
34801
|
+
createUserId?: string;
|
|
34802
|
+
/**
|
|
34803
|
+
*
|
|
34804
|
+
*
|
|
34805
|
+
* @type string
|
|
34806
|
+
*/
|
|
34807
|
+
createUserName?: string;
|
|
34808
|
+
/**
|
|
34809
|
+
*
|
|
34810
|
+
*
|
|
34811
|
+
* @type number
|
|
34812
|
+
*/
|
|
34813
|
+
deleted?: number;
|
|
34814
|
+
/**
|
|
34815
|
+
* 备注
|
|
34816
|
+
*
|
|
34817
|
+
* @type string
|
|
34818
|
+
*/
|
|
34819
|
+
description?: string;
|
|
34820
|
+
/**
|
|
34821
|
+
* id
|
|
34822
|
+
*
|
|
34823
|
+
* @type string
|
|
34824
|
+
*/
|
|
34825
|
+
id?: string;
|
|
34826
|
+
/**
|
|
34827
|
+
* 事务key
|
|
34828
|
+
*
|
|
34829
|
+
* @type string
|
|
34830
|
+
*/
|
|
34831
|
+
key?: string;
|
|
34832
|
+
/**
|
|
34833
|
+
* 绑定模型key
|
|
34834
|
+
*
|
|
34835
|
+
* @type string
|
|
34836
|
+
*/
|
|
34837
|
+
modelKey?: string;
|
|
34838
|
+
/**
|
|
34839
|
+
* 绑定模型
|
|
34840
|
+
*
|
|
34841
|
+
* @type string
|
|
34842
|
+
*/
|
|
34843
|
+
modelName?: string;
|
|
34844
|
+
/**
|
|
34845
|
+
*
|
|
34846
|
+
*
|
|
34847
|
+
* @type string
|
|
34848
|
+
*/
|
|
34849
|
+
modifyTime?: string;
|
|
34850
|
+
/**
|
|
34851
|
+
*
|
|
34852
|
+
*
|
|
34853
|
+
* @type string
|
|
34854
|
+
*/
|
|
34855
|
+
modifyUserId?: string;
|
|
34856
|
+
/**
|
|
34857
|
+
*
|
|
34858
|
+
*
|
|
34859
|
+
* @type string
|
|
34860
|
+
*/
|
|
34861
|
+
modifyUserName?: string;
|
|
34862
|
+
/**
|
|
34863
|
+
* 事务名称
|
|
34864
|
+
*
|
|
34865
|
+
* @type string
|
|
34866
|
+
*/
|
|
34867
|
+
name?: string;
|
|
34868
|
+
/**
|
|
34869
|
+
* 流程定义id
|
|
34870
|
+
*
|
|
34871
|
+
* @type string
|
|
34872
|
+
*/
|
|
34873
|
+
procDefId?: string;
|
|
34874
|
+
}
|
|
34875
|
+
export interface TransactionRequest {
|
|
34876
|
+
/**
|
|
34877
|
+
* 父id
|
|
34878
|
+
*
|
|
34879
|
+
* @type string
|
|
34880
|
+
*/
|
|
34881
|
+
baseId?: string;
|
|
34882
|
+
/**
|
|
34883
|
+
* 是否默认版本 1是 0否
|
|
34884
|
+
*
|
|
34885
|
+
* @type number
|
|
34886
|
+
*/
|
|
34887
|
+
default?: number;
|
|
34888
|
+
/**
|
|
34889
|
+
* 备注
|
|
34890
|
+
*
|
|
34891
|
+
* @type string
|
|
34892
|
+
*/
|
|
34893
|
+
description?: string;
|
|
34894
|
+
/**
|
|
34895
|
+
* 设计json
|
|
34896
|
+
*
|
|
34897
|
+
* @type string
|
|
34898
|
+
*/
|
|
34899
|
+
designerJson?: string;
|
|
34900
|
+
/**
|
|
34901
|
+
* 详情页设计json
|
|
34902
|
+
*
|
|
34903
|
+
* @type string
|
|
34904
|
+
*/
|
|
34905
|
+
detailDesignerJson?: string;
|
|
34906
|
+
/**
|
|
34907
|
+
* 详情页运行时json
|
|
34908
|
+
*
|
|
34909
|
+
* @type string
|
|
34910
|
+
*/
|
|
34911
|
+
detailRuntimeJson?: string;
|
|
34912
|
+
/**
|
|
34913
|
+
* 事务key
|
|
34914
|
+
*
|
|
34915
|
+
* @type string
|
|
34916
|
+
*/
|
|
34917
|
+
key?: string;
|
|
34918
|
+
/**
|
|
34919
|
+
* 绑定模型key
|
|
34920
|
+
*
|
|
34921
|
+
* @type string
|
|
34922
|
+
*/
|
|
34923
|
+
modelKey?: string;
|
|
34924
|
+
/**
|
|
34925
|
+
* 事务名称
|
|
34926
|
+
*
|
|
34927
|
+
* @type string
|
|
34928
|
+
*/
|
|
34929
|
+
name?: string;
|
|
34930
|
+
/**
|
|
34931
|
+
* 运行时json
|
|
34932
|
+
*
|
|
34933
|
+
* @type string
|
|
34934
|
+
*/
|
|
34935
|
+
runtimeJson?: string;
|
|
34936
|
+
/**
|
|
34937
|
+
* 版本
|
|
34938
|
+
*
|
|
34939
|
+
* @type string
|
|
34940
|
+
*/
|
|
34941
|
+
version?: string;
|
|
34942
|
+
}
|
|
34943
|
+
export interface TransactionResponse {
|
|
34944
|
+
/**
|
|
34945
|
+
* 父id
|
|
34946
|
+
*
|
|
34947
|
+
* @type string
|
|
34948
|
+
*/
|
|
34949
|
+
baseId?: string;
|
|
34950
|
+
/**
|
|
34951
|
+
*
|
|
34952
|
+
*
|
|
34953
|
+
* @type string
|
|
34954
|
+
*/
|
|
34955
|
+
createTime?: string;
|
|
34956
|
+
/**
|
|
34957
|
+
*
|
|
34958
|
+
*
|
|
34959
|
+
* @type string
|
|
34960
|
+
*/
|
|
34961
|
+
createUserId?: string;
|
|
34962
|
+
/**
|
|
34963
|
+
*
|
|
34964
|
+
*
|
|
34965
|
+
* @type string
|
|
34966
|
+
*/
|
|
34967
|
+
createUserName?: string;
|
|
34968
|
+
/**
|
|
34969
|
+
* 是否默认版本 1是 0否
|
|
34970
|
+
*
|
|
34971
|
+
* @type number
|
|
34972
|
+
*/
|
|
34973
|
+
defaulted?: number;
|
|
34974
|
+
/**
|
|
34975
|
+
* 备注
|
|
34976
|
+
*
|
|
34977
|
+
* @type string
|
|
34978
|
+
*/
|
|
34979
|
+
description?: string;
|
|
34980
|
+
/**
|
|
34981
|
+
* 设计json
|
|
34982
|
+
*
|
|
34983
|
+
* @type string
|
|
34984
|
+
*/
|
|
34985
|
+
designerJson?: string;
|
|
34986
|
+
/**
|
|
34987
|
+
* 详情页设计json
|
|
34988
|
+
*
|
|
34989
|
+
* @type string
|
|
34990
|
+
*/
|
|
34991
|
+
detailDesignerJson?: string;
|
|
34992
|
+
/**
|
|
34993
|
+
* 详情页运行时json
|
|
34994
|
+
*
|
|
34995
|
+
* @type string
|
|
34996
|
+
*/
|
|
34997
|
+
detailRuntimeJson?: string;
|
|
34998
|
+
/**
|
|
34999
|
+
* id
|
|
35000
|
+
*
|
|
35001
|
+
* @type string
|
|
35002
|
+
*/
|
|
35003
|
+
id?: string;
|
|
35004
|
+
/**
|
|
35005
|
+
* 事务key
|
|
35006
|
+
*
|
|
35007
|
+
* @type string
|
|
35008
|
+
*/
|
|
35009
|
+
key?: string;
|
|
35010
|
+
/**
|
|
35011
|
+
* 绑定模型key
|
|
35012
|
+
*
|
|
35013
|
+
* @type string
|
|
35014
|
+
*/
|
|
35015
|
+
modelKey?: string;
|
|
35016
|
+
/**
|
|
35017
|
+
* 模型名称
|
|
35018
|
+
*
|
|
35019
|
+
* @type string
|
|
35020
|
+
*/
|
|
35021
|
+
modelName?: string;
|
|
35022
|
+
/**
|
|
35023
|
+
*
|
|
35024
|
+
*
|
|
35025
|
+
* @type string
|
|
35026
|
+
*/
|
|
35027
|
+
modifyTime?: string;
|
|
35028
|
+
/**
|
|
35029
|
+
*
|
|
35030
|
+
*
|
|
35031
|
+
* @type string
|
|
35032
|
+
*/
|
|
35033
|
+
modifyUserId?: string;
|
|
35034
|
+
/**
|
|
35035
|
+
*
|
|
35036
|
+
*
|
|
35037
|
+
* @type string
|
|
35038
|
+
*/
|
|
35039
|
+
modifyUserName?: string;
|
|
35040
|
+
/**
|
|
35041
|
+
* 事务名称
|
|
35042
|
+
*
|
|
35043
|
+
* @type string
|
|
35044
|
+
*/
|
|
35045
|
+
name?: string;
|
|
35046
|
+
/**
|
|
35047
|
+
* 流程定义id
|
|
35048
|
+
*
|
|
35049
|
+
* @type string
|
|
35050
|
+
*/
|
|
35051
|
+
procDefId?: string;
|
|
35052
|
+
/**
|
|
35053
|
+
* 运行时json
|
|
35054
|
+
*
|
|
35055
|
+
* @type string
|
|
35056
|
+
*/
|
|
35057
|
+
runtimeJson?: string;
|
|
35058
|
+
/**
|
|
35059
|
+
* 是否系统内置(0自定义、1内置)
|
|
35060
|
+
*
|
|
35061
|
+
* @type number
|
|
35062
|
+
*/
|
|
35063
|
+
sysBuiltin?: number;
|
|
35064
|
+
/**
|
|
35065
|
+
* 版本
|
|
35066
|
+
*
|
|
35067
|
+
* @type string
|
|
35068
|
+
*/
|
|
35069
|
+
version?: string;
|
|
35070
|
+
}
|
|
35071
|
+
export interface TransactionVersion {
|
|
35072
|
+
/**
|
|
35073
|
+
* 父id
|
|
35074
|
+
*
|
|
35075
|
+
* @type string
|
|
35076
|
+
*/
|
|
35077
|
+
baseId?: string;
|
|
35078
|
+
/**
|
|
35079
|
+
*
|
|
35080
|
+
*
|
|
35081
|
+
* @type string
|
|
35082
|
+
*/
|
|
35083
|
+
createTime?: string;
|
|
35084
|
+
/**
|
|
35085
|
+
*
|
|
35086
|
+
*
|
|
35087
|
+
* @type string
|
|
35088
|
+
*/
|
|
35089
|
+
createUserId?: string;
|
|
35090
|
+
/**
|
|
35091
|
+
*
|
|
35092
|
+
*
|
|
35093
|
+
* @type string
|
|
35094
|
+
*/
|
|
35095
|
+
createUserName?: string;
|
|
35096
|
+
/**
|
|
35097
|
+
* 是否默认版本 1是 0否
|
|
35098
|
+
*
|
|
35099
|
+
* @type number
|
|
35100
|
+
*/
|
|
35101
|
+
defaulted?: number;
|
|
35102
|
+
/**
|
|
35103
|
+
*
|
|
35104
|
+
*
|
|
35105
|
+
* @type number
|
|
35106
|
+
*/
|
|
35107
|
+
deleted?: number;
|
|
35108
|
+
/**
|
|
35109
|
+
* id
|
|
35110
|
+
*
|
|
35111
|
+
* @type string
|
|
35112
|
+
*/
|
|
35113
|
+
id?: string;
|
|
35114
|
+
/**
|
|
35115
|
+
* 事务key
|
|
35116
|
+
*
|
|
35117
|
+
* @type string
|
|
35118
|
+
*/
|
|
35119
|
+
key?: string;
|
|
35120
|
+
/**
|
|
35121
|
+
* 绑定模型key
|
|
35122
|
+
*
|
|
35123
|
+
* @type string
|
|
35124
|
+
*/
|
|
35125
|
+
modelKey?: string;
|
|
35126
|
+
/**
|
|
35127
|
+
* 绑定模型
|
|
35128
|
+
*
|
|
35129
|
+
* @type string
|
|
35130
|
+
*/
|
|
35131
|
+
modelName?: string;
|
|
35132
|
+
/**
|
|
35133
|
+
*
|
|
35134
|
+
*
|
|
35135
|
+
* @type string
|
|
35136
|
+
*/
|
|
35137
|
+
modifyTime?: string;
|
|
35138
|
+
/**
|
|
35139
|
+
*
|
|
35140
|
+
*
|
|
35141
|
+
* @type string
|
|
35142
|
+
*/
|
|
35143
|
+
modifyUserId?: string;
|
|
35144
|
+
/**
|
|
35145
|
+
*
|
|
35146
|
+
*
|
|
35147
|
+
* @type string
|
|
35148
|
+
*/
|
|
35149
|
+
modifyUserName?: string;
|
|
35150
|
+
/**
|
|
35151
|
+
* 事务名称
|
|
35152
|
+
*
|
|
35153
|
+
* @type string
|
|
35154
|
+
*/
|
|
35155
|
+
name?: string;
|
|
35156
|
+
/**
|
|
35157
|
+
* 流程定义id
|
|
35158
|
+
*
|
|
35159
|
+
* @type string
|
|
35160
|
+
*/
|
|
35161
|
+
procDefId?: string;
|
|
35162
|
+
/**
|
|
35163
|
+
* 是否系统内置(0自定义、1内置)
|
|
35164
|
+
*
|
|
35165
|
+
* @type number
|
|
35166
|
+
*/
|
|
35167
|
+
sysBuiltin?: number;
|
|
35168
|
+
/**
|
|
35169
|
+
* 版本
|
|
35170
|
+
*
|
|
35171
|
+
* @type string
|
|
35172
|
+
*/
|
|
35173
|
+
version?: string;
|
|
35174
|
+
}
|
|
34397
35175
|
export interface TransferAllWorkItemRequest {
|
|
34398
35176
|
/**
|
|
34399
35177
|
*
|
|
@@ -35831,6 +36609,12 @@ export interface UserTenantDTO {
|
|
|
35831
36609
|
* @type string
|
|
35832
36610
|
*/
|
|
35833
36611
|
id?: string;
|
|
36612
|
+
/**
|
|
36613
|
+
* 是否最后登录租户,0:否 1:是
|
|
36614
|
+
*
|
|
36615
|
+
* @type number
|
|
36616
|
+
*/
|
|
36617
|
+
latestLogin?: number;
|
|
35834
36618
|
/**
|
|
35835
36619
|
* 直属上级id
|
|
35836
36620
|
*
|