@gct-paas/api 0.1.6-dev.8 → 6.0.0-dev.0
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 +283 -2
- package/es/apaas/service/apis/api.service.d.ts +0 -4
- package/es/apaas/service/apis/app-global-settings.service.d.ts +0 -4
- package/es/apaas/service/apis/category.service.d.ts +0 -8
- package/es/apaas/service/apis/designer-common.service.d.ts +16 -0
- package/es/apaas/service/apis/edhr-instance.service.d.ts +4 -16
- 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/medPro.service.d.ts +108 -0
- package/es/apaas/service/apis/message-tmpl.service.d.ts +4 -0
- package/es/apaas/service/apis/model-comprehensive.service.d.ts +4 -4
- package/es/apaas/service/apis/model-meta.service.d.ts +17 -0
- package/es/apaas/service/apis/online-form-instance.service.d.ts +4 -16
- package/es/apaas/service/apis/online-form-tmpl.service.d.ts +18 -1
- package/es/apaas/service/apis/print.service.d.ts +10 -1
- package/es/apaas/service/apis/process-approval-log.service.d.ts +1 -1
- package/es/apaas/service/apis/script.service.d.ts +26 -1
- package/es/apaas/service/apis/ss.service.d.ts +16 -0
- package/es/apaas/service/apis/trace-log-details.service.d.ts +12 -0
- package/es/apaas/service/entities.d.ts +860 -16
- 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 +14 -4
- package/es/platform/service/apis/api.service.d.ts +35 -10
- package/es/platform/service/apis/app.service.d.ts +0 -4
- package/es/platform/service/apis/license.service.d.ts +1 -10
- package/es/platform/service/entities.d.ts +12 -0
- package/package.json +18 -10
|
@@ -27,11 +27,89 @@ export const apiConfig = [
|
|
|
27
27
|
path: "modelMeta/modelDataAssociation",
|
|
28
28
|
hasQuery: true
|
|
29
29
|
},
|
|
30
|
+
{
|
|
31
|
+
mode: "post",
|
|
32
|
+
method: "postApproveProcessApprove",
|
|
33
|
+
path: "approve/process/approve",
|
|
34
|
+
hasData: true
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
mode: "post",
|
|
38
|
+
method: "postApproveProcessInterfereReassign",
|
|
39
|
+
path: "approve/process/interfere/reassign",
|
|
40
|
+
hasData: true
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
mode: "post",
|
|
44
|
+
method: "postApproveProcessInterfereReturn",
|
|
45
|
+
path: "approve/process/interfere/return",
|
|
46
|
+
hasData: true
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
mode: "post",
|
|
50
|
+
method: "postApproveProcessJump",
|
|
51
|
+
path: "approve/process/jump",
|
|
52
|
+
hasData: true
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
mode: "post",
|
|
56
|
+
method: "postApproveProcessReassign",
|
|
57
|
+
path: "approve/process/reassign",
|
|
58
|
+
hasData: true
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
mode: "post",
|
|
62
|
+
method: "postApproveProcessReturn",
|
|
63
|
+
path: "approve/process/return",
|
|
64
|
+
hasData: true
|
|
65
|
+
},
|
|
30
66
|
{
|
|
31
67
|
mode: "get",
|
|
32
68
|
method: "getEdhrAttachmentGetEdhrAttachment",
|
|
33
69
|
path: "edhrAttachment/getEdhrAttachment",
|
|
34
70
|
hasQuery: true
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
mode: "post",
|
|
74
|
+
method: "postFileUnzip",
|
|
75
|
+
path: "file/unzip",
|
|
76
|
+
hasQuery: true
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
mode: "post",
|
|
80
|
+
method: "postFormChangeProcessApprove",
|
|
81
|
+
path: "form/change/process/approve",
|
|
82
|
+
hasData: true
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
mode: "post",
|
|
86
|
+
method: "postFormChangeProcessInterfereReassign",
|
|
87
|
+
path: "form/change/process/interfere/reassign",
|
|
88
|
+
hasData: true
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
mode: "post",
|
|
92
|
+
method: "postFormChangeProcessInterfereReturn",
|
|
93
|
+
path: "form/change/process/interfere/return",
|
|
94
|
+
hasData: true
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
mode: "post",
|
|
98
|
+
method: "postFormChangeProcessJump",
|
|
99
|
+
path: "form/change/process/jump",
|
|
100
|
+
hasData: true
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
mode: "post",
|
|
104
|
+
method: "postFormChangeProcessReassign",
|
|
105
|
+
path: "form/change/process/reassign",
|
|
106
|
+
hasData: true
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
mode: "post",
|
|
110
|
+
method: "postFormChangeProcessReturn",
|
|
111
|
+
path: "form/change/process/return",
|
|
112
|
+
hasData: true
|
|
35
113
|
}
|
|
36
114
|
]
|
|
37
115
|
},
|
|
@@ -1511,6 +1589,62 @@ export const apiConfig = [
|
|
|
1511
1589
|
}
|
|
1512
1590
|
]
|
|
1513
1591
|
},
|
|
1592
|
+
{
|
|
1593
|
+
name: "detailPage",
|
|
1594
|
+
entityName: "detail-page",
|
|
1595
|
+
apis: [
|
|
1596
|
+
{
|
|
1597
|
+
mode: "post",
|
|
1598
|
+
method: "post",
|
|
1599
|
+
path: "",
|
|
1600
|
+
hasData: true
|
|
1601
|
+
},
|
|
1602
|
+
{
|
|
1603
|
+
mode: "delete",
|
|
1604
|
+
method: "delete",
|
|
1605
|
+
path: "",
|
|
1606
|
+
hasQuery: true
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
mode: "post",
|
|
1610
|
+
method: "postCopyByIdId",
|
|
1611
|
+
path: "copyById/{id}",
|
|
1612
|
+
hasPathParams: true,
|
|
1613
|
+
hasData: true
|
|
1614
|
+
},
|
|
1615
|
+
{
|
|
1616
|
+
mode: "get",
|
|
1617
|
+
method: "getInfo",
|
|
1618
|
+
path: "info",
|
|
1619
|
+
hasQuery: true
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
mode: "get",
|
|
1623
|
+
method: "getList",
|
|
1624
|
+
path: "list"
|
|
1625
|
+
},
|
|
1626
|
+
{
|
|
1627
|
+
mode: "get",
|
|
1628
|
+
method: "getPageList",
|
|
1629
|
+
path: "page/list",
|
|
1630
|
+
hasQuery: true
|
|
1631
|
+
},
|
|
1632
|
+
{
|
|
1633
|
+
mode: "put",
|
|
1634
|
+
method: "putUpdateDesignerJsonId",
|
|
1635
|
+
path: "updateDesignerJson/{id}",
|
|
1636
|
+
hasPathParams: true,
|
|
1637
|
+
hasData: true
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
mode: "put",
|
|
1641
|
+
method: "putId",
|
|
1642
|
+
path: "{id}",
|
|
1643
|
+
hasPathParams: true,
|
|
1644
|
+
hasData: true
|
|
1645
|
+
}
|
|
1646
|
+
]
|
|
1647
|
+
},
|
|
1514
1648
|
{
|
|
1515
1649
|
name: "devops",
|
|
1516
1650
|
entityName: "devops",
|
|
@@ -2472,6 +2606,12 @@ export const apiConfig = [
|
|
|
2472
2606
|
path: "download/{id}",
|
|
2473
2607
|
hasPathParams: true
|
|
2474
2608
|
},
|
|
2609
|
+
{
|
|
2610
|
+
mode: "post",
|
|
2611
|
+
method: "postFrontSave",
|
|
2612
|
+
path: "front/save",
|
|
2613
|
+
hasData: true
|
|
2614
|
+
},
|
|
2475
2615
|
{
|
|
2476
2616
|
mode: "get",
|
|
2477
2617
|
method: "getInfo",
|
|
@@ -2645,6 +2785,12 @@ export const apiConfig = [
|
|
|
2645
2785
|
path: "save",
|
|
2646
2786
|
hasData: true
|
|
2647
2787
|
},
|
|
2788
|
+
{
|
|
2789
|
+
mode: "post",
|
|
2790
|
+
method: "postSync",
|
|
2791
|
+
path: "sync",
|
|
2792
|
+
hasQuery: true
|
|
2793
|
+
},
|
|
2648
2794
|
{
|
|
2649
2795
|
mode: "put",
|
|
2650
2796
|
method: "putUniqueConstraintAddModelKeyFieldKeyType",
|
|
@@ -3790,7 +3936,6 @@ export const apiConfig = [
|
|
|
3790
3936
|
mode: "post",
|
|
3791
3937
|
method: "postBizServiceGeneralModelCategoryModelKeyBsKey",
|
|
3792
3938
|
path: "biz-service/general/{modelCategory}/{modelKey}/{bsKey}",
|
|
3793
|
-
hasUpload: true,
|
|
3794
3939
|
hasPathParams: true,
|
|
3795
3940
|
hasQuery: true,
|
|
3796
3941
|
hasData: true
|
|
@@ -3806,7 +3951,6 @@ export const apiConfig = [
|
|
|
3806
3951
|
mode: "post",
|
|
3807
3952
|
method: "postBizServiceModelCategoryModelKeyBsKey",
|
|
3808
3953
|
path: "biz-service/{modelCategory}/{modelKey}/{bsKey}",
|
|
3809
|
-
hasUpload: true,
|
|
3810
3954
|
hasPathParams: true,
|
|
3811
3955
|
hasQuery: true,
|
|
3812
3956
|
hasData: true
|
|
@@ -4134,6 +4278,13 @@ export const apiConfig = [
|
|
|
4134
4278
|
path: "translateModelFieldExp",
|
|
4135
4279
|
hasQuery: true
|
|
4136
4280
|
},
|
|
4281
|
+
{
|
|
4282
|
+
mode: "put",
|
|
4283
|
+
method: "putUniqueKey",
|
|
4284
|
+
path: "unique/{key}",
|
|
4285
|
+
hasPathParams: true,
|
|
4286
|
+
hasQuery: true
|
|
4287
|
+
},
|
|
4137
4288
|
{
|
|
4138
4289
|
mode: "get",
|
|
4139
4290
|
method: "getUnrelatedList",
|
|
@@ -4748,6 +4899,12 @@ export const apiConfig = [
|
|
|
4748
4899
|
path: "getCommunicationConfig",
|
|
4749
4900
|
hasQuery: true
|
|
4750
4901
|
},
|
|
4902
|
+
{
|
|
4903
|
+
mode: "get",
|
|
4904
|
+
method: "getGetFormTmplByInstIdAndTmplId",
|
|
4905
|
+
path: "getFormTmplByInstIdAndTmplId",
|
|
4906
|
+
hasQuery: true
|
|
4907
|
+
},
|
|
4751
4908
|
{
|
|
4752
4909
|
mode: "get",
|
|
4753
4910
|
method: "getGetFormTmplUsedFieldMeta",
|
|
@@ -5620,6 +5777,12 @@ export const apiConfig = [
|
|
|
5620
5777
|
path: "labelBackEndPrint",
|
|
5621
5778
|
hasData: true
|
|
5622
5779
|
},
|
|
5780
|
+
{
|
|
5781
|
+
mode: "post",
|
|
5782
|
+
method: "postPreview",
|
|
5783
|
+
path: "preview",
|
|
5784
|
+
hasData: true
|
|
5785
|
+
},
|
|
5623
5786
|
{
|
|
5624
5787
|
mode: "get",
|
|
5625
5788
|
method: "getPrintDropdownList",
|
|
@@ -6860,6 +7023,24 @@ export const apiConfig = [
|
|
|
6860
7023
|
path: "",
|
|
6861
7024
|
hasQuery: true
|
|
6862
7025
|
},
|
|
7026
|
+
{
|
|
7027
|
+
mode: "post",
|
|
7028
|
+
method: "postExport",
|
|
7029
|
+
path: "export"
|
|
7030
|
+
},
|
|
7031
|
+
{
|
|
7032
|
+
mode: "post",
|
|
7033
|
+
method: "postImport",
|
|
7034
|
+
path: "import",
|
|
7035
|
+
hasData: true
|
|
7036
|
+
},
|
|
7037
|
+
{
|
|
7038
|
+
mode: "post",
|
|
7039
|
+
method: "postImportPreview",
|
|
7040
|
+
path: "import/preview",
|
|
7041
|
+
hasUpload: true,
|
|
7042
|
+
hasData: true
|
|
7043
|
+
},
|
|
6863
7044
|
{
|
|
6864
7045
|
mode: "get",
|
|
6865
7046
|
method: "getInfo",
|
|
@@ -7257,6 +7438,20 @@ export const apiConfig = [
|
|
|
7257
7438
|
hasUpload: true,
|
|
7258
7439
|
hasQuery: true,
|
|
7259
7440
|
hasData: true
|
|
7441
|
+
},
|
|
7442
|
+
{
|
|
7443
|
+
mode: "post",
|
|
7444
|
+
method: "postUploadImportSerialWorkflow",
|
|
7445
|
+
path: "upload/importSerialWorkflow",
|
|
7446
|
+
hasUpload: true,
|
|
7447
|
+
hasData: true
|
|
7448
|
+
},
|
|
7449
|
+
{
|
|
7450
|
+
mode: "post",
|
|
7451
|
+
method: "postUploadZip",
|
|
7452
|
+
path: "upload/zip",
|
|
7453
|
+
hasUpload: true,
|
|
7454
|
+
hasData: true
|
|
7260
7455
|
}
|
|
7261
7456
|
]
|
|
7262
7457
|
},
|
|
@@ -7642,6 +7837,92 @@ export const apiConfig = [
|
|
|
7642
7837
|
}
|
|
7643
7838
|
]
|
|
7644
7839
|
},
|
|
7840
|
+
{
|
|
7841
|
+
name: "transaction",
|
|
7842
|
+
entityName: "transaction",
|
|
7843
|
+
apis: [
|
|
7844
|
+
{
|
|
7845
|
+
mode: "post",
|
|
7846
|
+
method: "post",
|
|
7847
|
+
path: "",
|
|
7848
|
+
hasData: true
|
|
7849
|
+
},
|
|
7850
|
+
{
|
|
7851
|
+
mode: "delete",
|
|
7852
|
+
method: "delete",
|
|
7853
|
+
path: "",
|
|
7854
|
+
hasQuery: true
|
|
7855
|
+
},
|
|
7856
|
+
{
|
|
7857
|
+
mode: "post",
|
|
7858
|
+
method: "postCopy",
|
|
7859
|
+
path: "copy",
|
|
7860
|
+
hasData: true
|
|
7861
|
+
},
|
|
7862
|
+
{
|
|
7863
|
+
mode: "post",
|
|
7864
|
+
method: "postCopyVersionId",
|
|
7865
|
+
path: "copyVersion/{id}",
|
|
7866
|
+
hasPathParams: true,
|
|
7867
|
+
hasData: true
|
|
7868
|
+
},
|
|
7869
|
+
{
|
|
7870
|
+
mode: "get",
|
|
7871
|
+
method: "getGetVersionById",
|
|
7872
|
+
path: "getVersionById",
|
|
7873
|
+
hasQuery: true
|
|
7874
|
+
},
|
|
7875
|
+
{
|
|
7876
|
+
mode: "get",
|
|
7877
|
+
method: "getInfo",
|
|
7878
|
+
path: "info",
|
|
7879
|
+
hasQuery: true
|
|
7880
|
+
},
|
|
7881
|
+
{
|
|
7882
|
+
mode: "get",
|
|
7883
|
+
method: "getList",
|
|
7884
|
+
path: "list"
|
|
7885
|
+
},
|
|
7886
|
+
{
|
|
7887
|
+
mode: "get",
|
|
7888
|
+
method: "getListVersionById",
|
|
7889
|
+
path: "listVersionById",
|
|
7890
|
+
hasQuery: true
|
|
7891
|
+
},
|
|
7892
|
+
{
|
|
7893
|
+
mode: "get",
|
|
7894
|
+
method: "getPageList",
|
|
7895
|
+
path: "page/list",
|
|
7896
|
+
hasQuery: true
|
|
7897
|
+
},
|
|
7898
|
+
{
|
|
7899
|
+
mode: "delete",
|
|
7900
|
+
method: "deleteRemoveVersionById",
|
|
7901
|
+
path: "removeVersionById",
|
|
7902
|
+
hasQuery: true
|
|
7903
|
+
},
|
|
7904
|
+
{
|
|
7905
|
+
mode: "post",
|
|
7906
|
+
method: "postSaveVersion",
|
|
7907
|
+
path: "saveVersion",
|
|
7908
|
+
hasData: true
|
|
7909
|
+
},
|
|
7910
|
+
{
|
|
7911
|
+
mode: "put",
|
|
7912
|
+
method: "putUpdateVersionByIdId",
|
|
7913
|
+
path: "updateVersionById/{id}",
|
|
7914
|
+
hasPathParams: true,
|
|
7915
|
+
hasData: true
|
|
7916
|
+
},
|
|
7917
|
+
{
|
|
7918
|
+
mode: "put",
|
|
7919
|
+
method: "putId",
|
|
7920
|
+
path: "{id}",
|
|
7921
|
+
hasPathParams: true,
|
|
7922
|
+
hasData: true
|
|
7923
|
+
}
|
|
7924
|
+
]
|
|
7925
|
+
},
|
|
7645
7926
|
{
|
|
7646
7927
|
name: "userGroup",
|
|
7647
7928
|
entityName: "user-group",
|
|
@@ -34,10 +34,6 @@ export interface getListQuery extends IObject {
|
|
|
34
34
|
* 结束时间
|
|
35
35
|
*/
|
|
36
36
|
endTime?: string;
|
|
37
|
-
/**
|
|
38
|
-
* 所属模块(实体、枚举、web页面)
|
|
39
|
-
*/
|
|
40
|
-
module?: string;
|
|
41
37
|
/**
|
|
42
38
|
* 应用名称
|
|
43
39
|
*/
|
|
@@ -224,10 +220,6 @@ export interface getPageListQuery extends IObject {
|
|
|
224
220
|
* 结束时间
|
|
225
221
|
*/
|
|
226
222
|
endTime?: string;
|
|
227
|
-
/**
|
|
228
|
-
* 所属模块(实体、枚举、web页面)
|
|
229
|
-
*/
|
|
230
|
-
module?: string;
|
|
231
223
|
/**
|
|
232
224
|
* 应用名称
|
|
233
225
|
*/
|
|
@@ -95,6 +95,10 @@ export interface getGetCanBeUsedOrgUserQuery extends IObject {
|
|
|
95
95
|
* 模型 key,不涉及字段的情况下不用传
|
|
96
96
|
*/
|
|
97
97
|
modelKey?: string;
|
|
98
|
+
/**
|
|
99
|
+
* 是否只显示有席位用户
|
|
100
|
+
*/
|
|
101
|
+
onlyHasSeat?: boolean;
|
|
98
102
|
/**
|
|
99
103
|
* 部门id
|
|
100
104
|
*/
|
|
@@ -161,6 +165,10 @@ export interface getGetUserGroupUserQuery extends IObject {
|
|
|
161
165
|
* 模型 key,不涉及字段的情况下不用传
|
|
162
166
|
*/
|
|
163
167
|
modelKey?: string;
|
|
168
|
+
/**
|
|
169
|
+
* 是否只显示有席位用户
|
|
170
|
+
*/
|
|
171
|
+
onlyHasSeat?: boolean;
|
|
164
172
|
/**
|
|
165
173
|
* 部门id
|
|
166
174
|
*/
|
|
@@ -227,6 +235,10 @@ export interface getGetVisibleOrgUserQuery extends IObject {
|
|
|
227
235
|
* 模型 key,不涉及字段的情况下不用传
|
|
228
236
|
*/
|
|
229
237
|
modelKey?: string;
|
|
238
|
+
/**
|
|
239
|
+
* 是否只显示有席位用户
|
|
240
|
+
*/
|
|
241
|
+
onlyHasSeat?: boolean;
|
|
230
242
|
/**
|
|
231
243
|
* 部门id
|
|
232
244
|
*/
|
|
@@ -293,6 +305,10 @@ export interface getGetVisibleUserAndVisibleOrgUserQuery extends IObject {
|
|
|
293
305
|
* 模型 key,不涉及字段的情况下不用传
|
|
294
306
|
*/
|
|
295
307
|
modelKey?: string;
|
|
308
|
+
/**
|
|
309
|
+
* 是否只显示有席位用户
|
|
310
|
+
*/
|
|
311
|
+
onlyHasSeat?: boolean;
|
|
296
312
|
/**
|
|
297
313
|
* 部门id
|
|
298
314
|
*/
|
|
@@ -27,10 +27,6 @@ export interface getFindMaterialNoQuery extends IObject {
|
|
|
27
27
|
* 批次号
|
|
28
28
|
*/
|
|
29
29
|
materialNo?: string;
|
|
30
|
-
/**
|
|
31
|
-
* 模块类型
|
|
32
|
-
*/
|
|
33
|
-
module?: string;
|
|
34
30
|
/**
|
|
35
31
|
* 页码
|
|
36
32
|
*/
|
|
@@ -91,10 +87,6 @@ export interface getPageListQuery extends IObject {
|
|
|
91
87
|
* 更新人id
|
|
92
88
|
*/
|
|
93
89
|
modifyUserId?: string;
|
|
94
|
-
/**
|
|
95
|
-
* 模块类型
|
|
96
|
-
*/
|
|
97
|
-
module?: string;
|
|
98
90
|
/**
|
|
99
91
|
* 操作人
|
|
100
92
|
*/
|
|
@@ -137,6 +129,10 @@ export interface getReversePageListQuery extends IObject {
|
|
|
137
129
|
* 日期结束
|
|
138
130
|
*/
|
|
139
131
|
endTraceDate?: string;
|
|
132
|
+
/**
|
|
133
|
+
* 外部参考号
|
|
134
|
+
*/
|
|
135
|
+
externalReferenceNo?: string;
|
|
140
136
|
/**
|
|
141
137
|
* 物料编号
|
|
142
138
|
*/
|
|
@@ -145,10 +141,6 @@ export interface getReversePageListQuery extends IObject {
|
|
|
145
141
|
* 工单id
|
|
146
142
|
*/
|
|
147
143
|
mfgOrderId?: string;
|
|
148
|
-
/**
|
|
149
|
-
* 模块类型
|
|
150
|
-
*/
|
|
151
|
-
module?: string;
|
|
152
144
|
/**
|
|
153
145
|
* 操作人
|
|
154
146
|
*/
|
|
@@ -203,10 +195,6 @@ export interface getRunningPageQuery extends IObject {
|
|
|
203
195
|
* 批次号
|
|
204
196
|
*/
|
|
205
197
|
materialNo?: string;
|
|
206
|
-
/**
|
|
207
|
-
* 模块类型
|
|
208
|
-
*/
|
|
209
|
-
module?: string;
|
|
210
198
|
/**
|
|
211
199
|
* 页码
|
|
212
200
|
*/
|
|
@@ -4,6 +4,7 @@ import type {
|
|
|
4
4
|
ExcelTmplRequest,
|
|
5
5
|
ExcelTemplateConfigReq,
|
|
6
6
|
ExcelTmplResponse,
|
|
7
|
+
ExcelTemplateAndConfigReq,
|
|
7
8
|
ExcelTemplateConfigV1Req,
|
|
8
9
|
} from '../entities';
|
|
9
10
|
|
|
@@ -137,6 +138,13 @@ export interface ExcelTmplService {
|
|
|
137
138
|
path: getDownloadIdPathParams,
|
|
138
139
|
config?: Partial<AxiosRequestConfig>,
|
|
139
140
|
): Promise<any>;
|
|
141
|
+
/**
|
|
142
|
+
* 前台模板保存
|
|
143
|
+
*/
|
|
144
|
+
postFrontSave(
|
|
145
|
+
data: ExcelTemplateAndConfigReq,
|
|
146
|
+
config?: Partial<AxiosRequestConfig>,
|
|
147
|
+
): Promise<string>;
|
|
140
148
|
/**
|
|
141
149
|
* 详情
|
|
142
150
|
*/
|
|
@@ -22,11 +22,11 @@ export interface getDataDoImportQuery extends IObject {
|
|
|
22
22
|
/**
|
|
23
23
|
* 引用主模型数据的字段KEY(仅子表导入需要传)
|
|
24
24
|
*/
|
|
25
|
-
|
|
25
|
+
refFieldKey_?: string;
|
|
26
26
|
/**
|
|
27
27
|
* 引用主模型数据的id_(仅子表导入需要传)
|
|
28
28
|
*/
|
|
29
|
-
|
|
29
|
+
refMasterId_?: string;
|
|
30
30
|
/**
|
|
31
31
|
* 空值是否更新
|
|
32
32
|
*/
|
|
@@ -85,6 +85,12 @@ export interface getRemoveDocumentQuery extends IObject {
|
|
|
85
85
|
*/
|
|
86
86
|
env?: string;
|
|
87
87
|
}
|
|
88
|
+
export interface postSyncQuery extends IObject {
|
|
89
|
+
/**
|
|
90
|
+
* 模型KEY
|
|
91
|
+
*/
|
|
92
|
+
modelKey: string;
|
|
93
|
+
}
|
|
88
94
|
export interface putUniqueConstraintAddModelKeyFieldKeyTypePathParams {
|
|
89
95
|
modelKey: string;
|
|
90
96
|
fieldKey: string;
|
|
@@ -184,6 +190,13 @@ export interface FieldMetaService {
|
|
|
184
190
|
data: FieldMetaVO,
|
|
185
191
|
config?: Partial<AxiosRequestConfig>,
|
|
186
192
|
): Promise<string>;
|
|
193
|
+
/**
|
|
194
|
+
* 同步主模型字段
|
|
195
|
+
*/
|
|
196
|
+
postSync(
|
|
197
|
+
query: postSyncQuery,
|
|
198
|
+
config?: Partial<AxiosRequestConfig>,
|
|
199
|
+
): Promise<string>;
|
|
187
200
|
/**
|
|
188
201
|
* 添加唯一约束(后门接口,谨慎使用!)
|
|
189
202
|
*/
|
|
@@ -2,7 +2,18 @@ import type { AxiosRequestConfig } from 'axios';
|
|
|
2
2
|
import type {
|
|
3
3
|
modelDataAssociationRequest,
|
|
4
4
|
ModelAssociationResponse,
|
|
5
|
+
ProcessApproveRequest,
|
|
6
|
+
ProcessReassign4InterfereRequest,
|
|
7
|
+
ProcessReturn4InterfereRequest,
|
|
8
|
+
DhrProcessJumpRequest,
|
|
9
|
+
ProcessReassignRequest,
|
|
10
|
+
ProcessReturnRequest,
|
|
5
11
|
OnlineFormInstance,
|
|
12
|
+
DhrProcessApproveRequest,
|
|
13
|
+
DhrProcessReassign4InterfereRequest,
|
|
14
|
+
DhrProcessReturn4InterfereRequest,
|
|
15
|
+
DhrProcessReassignRequest,
|
|
16
|
+
DhrProcessReturnRequest,
|
|
6
17
|
} from '../entities';
|
|
7
18
|
|
|
8
19
|
export interface getModelMetaGetSysConfigQuery extends IObject {
|
|
@@ -37,6 +48,12 @@ export interface getEdhrAttachmentGetEdhrAttachmentQuery extends IObject {
|
|
|
37
48
|
*/
|
|
38
49
|
materialNo: string;
|
|
39
50
|
}
|
|
51
|
+
export interface postFileUnzipQuery extends IObject {
|
|
52
|
+
/**
|
|
53
|
+
* url
|
|
54
|
+
*/
|
|
55
|
+
url: string;
|
|
56
|
+
}
|
|
40
57
|
export interface MedProService {
|
|
41
58
|
/**
|
|
42
59
|
* 关联模型数据查询
|
|
@@ -66,6 +83,48 @@ export interface MedProService {
|
|
|
66
83
|
query: getModelMetaModelDataAssociationQuery,
|
|
67
84
|
config?: Partial<AxiosRequestConfig>,
|
|
68
85
|
): Promise<ModelAssociationResponse[]>;
|
|
86
|
+
/**
|
|
87
|
+
* 审核
|
|
88
|
+
*/
|
|
89
|
+
postApproveProcessApprove(
|
|
90
|
+
data: ProcessApproveRequest,
|
|
91
|
+
config?: Partial<AxiosRequestConfig>,
|
|
92
|
+
): Promise<string>;
|
|
93
|
+
/**
|
|
94
|
+
* 流程干预转办
|
|
95
|
+
*/
|
|
96
|
+
postApproveProcessInterfereReassign(
|
|
97
|
+
data: ProcessReassign4InterfereRequest,
|
|
98
|
+
config?: Partial<AxiosRequestConfig>,
|
|
99
|
+
): Promise<string>;
|
|
100
|
+
/**
|
|
101
|
+
* 流程干预退回
|
|
102
|
+
*/
|
|
103
|
+
postApproveProcessInterfereReturn(
|
|
104
|
+
data: ProcessReturn4InterfereRequest,
|
|
105
|
+
config?: Partial<AxiosRequestConfig>,
|
|
106
|
+
): Promise<string>;
|
|
107
|
+
/**
|
|
108
|
+
* 根据按钮key跳转流程节点
|
|
109
|
+
*/
|
|
110
|
+
postApproveProcessJump(
|
|
111
|
+
data: DhrProcessJumpRequest,
|
|
112
|
+
config?: Partial<AxiosRequestConfig>,
|
|
113
|
+
): Promise<string>;
|
|
114
|
+
/**
|
|
115
|
+
* 转办
|
|
116
|
+
*/
|
|
117
|
+
postApproveProcessReassign(
|
|
118
|
+
data: ProcessReassignRequest,
|
|
119
|
+
config?: Partial<AxiosRequestConfig>,
|
|
120
|
+
): Promise<string>;
|
|
121
|
+
/**
|
|
122
|
+
* 退回
|
|
123
|
+
*/
|
|
124
|
+
postApproveProcessReturn(
|
|
125
|
+
data: ProcessReturnRequest,
|
|
126
|
+
config?: Partial<AxiosRequestConfig>,
|
|
127
|
+
): Promise<string>;
|
|
69
128
|
/**
|
|
70
129
|
* 获取Edhr附录接口
|
|
71
130
|
*/
|
|
@@ -73,4 +132,53 @@ export interface MedProService {
|
|
|
73
132
|
query: getEdhrAttachmentGetEdhrAttachmentQuery,
|
|
74
133
|
config?: Partial<AxiosRequestConfig>,
|
|
75
134
|
): Promise<OnlineFormInstance[]>;
|
|
135
|
+
/**
|
|
136
|
+
* 解压出pdf
|
|
137
|
+
*/
|
|
138
|
+
postFileUnzip(
|
|
139
|
+
query: postFileUnzipQuery,
|
|
140
|
+
config?: Partial<AxiosRequestConfig>,
|
|
141
|
+
): Promise<string>;
|
|
142
|
+
/**
|
|
143
|
+
* 审核
|
|
144
|
+
*/
|
|
145
|
+
postFormChangeProcessApprove(
|
|
146
|
+
data: DhrProcessApproveRequest,
|
|
147
|
+
config?: Partial<AxiosRequestConfig>,
|
|
148
|
+
): Promise<string>;
|
|
149
|
+
/**
|
|
150
|
+
* 流程干预转办
|
|
151
|
+
*/
|
|
152
|
+
postFormChangeProcessInterfereReassign(
|
|
153
|
+
data: DhrProcessReassign4InterfereRequest,
|
|
154
|
+
config?: Partial<AxiosRequestConfig>,
|
|
155
|
+
): Promise<string>;
|
|
156
|
+
/**
|
|
157
|
+
* 流程干预退回
|
|
158
|
+
*/
|
|
159
|
+
postFormChangeProcessInterfereReturn(
|
|
160
|
+
data: DhrProcessReturn4InterfereRequest,
|
|
161
|
+
config?: Partial<AxiosRequestConfig>,
|
|
162
|
+
): Promise<string>;
|
|
163
|
+
/**
|
|
164
|
+
* 根据按钮key跳转流程节点
|
|
165
|
+
*/
|
|
166
|
+
postFormChangeProcessJump(
|
|
167
|
+
data: DhrProcessJumpRequest,
|
|
168
|
+
config?: Partial<AxiosRequestConfig>,
|
|
169
|
+
): Promise<string>;
|
|
170
|
+
/**
|
|
171
|
+
* 转办
|
|
172
|
+
*/
|
|
173
|
+
postFormChangeProcessReassign(
|
|
174
|
+
data: DhrProcessReassignRequest,
|
|
175
|
+
config?: Partial<AxiosRequestConfig>,
|
|
176
|
+
): Promise<string>;
|
|
177
|
+
/**
|
|
178
|
+
* 退回
|
|
179
|
+
*/
|
|
180
|
+
postFormChangeProcessReturn(
|
|
181
|
+
data: DhrProcessReturnRequest,
|
|
182
|
+
config?: Partial<AxiosRequestConfig>,
|
|
183
|
+
): Promise<string>;
|
|
76
184
|
}
|