@gct-paas/api 0.1.6-dev.12 → 0.1.6-dev.13
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 +14 -175
- package/es/apaas/service/apis/api.service.d.ts +2 -1
- package/es/apaas/service/apis/app-global-settings.service.d.ts +4 -0
- package/es/apaas/service/apis/chat.service.d.ts +2 -1
- package/es/apaas/service/apis/edhr-instance.service.d.ts +8 -8
- package/es/apaas/service/apis/enum-model-field.service.d.ts +0 -8
- package/es/apaas/service/apis/excel-tmpl.service.d.ts +0 -8
- package/es/apaas/service/apis/excel.service.d.ts +4 -2
- package/es/apaas/service/apis/field-meta.service.d.ts +0 -13
- package/es/apaas/service/apis/model-meta.service.d.ts +0 -17
- package/es/apaas/service/apis/model-method.service.d.ts +1 -19
- package/es/apaas/service/apis/online-form-instance.service.d.ts +12 -12
- package/es/apaas/service/apis/print.service.d.ts +1 -1
- package/es/apaas/service/apis/trace-log-details.service.d.ts +0 -12
- package/es/apaas/service/entities.d.ts +14 -798
- package/es/apaas/service/index.d.ts +0 -4
- package/es/platform/service/api-config.mjs +6 -30
- package/es/platform/service/apis/api.service.d.ts +1 -38
- package/es/platform/service/apis/app.service.d.ts +0 -4
- package/es/platform/service/apis/dashboard.service.d.ts +4 -0
- package/es/platform/service/apis/license.service.d.ts +2 -1
- package/es/platform/service/apis/login-log.service.d.ts +0 -13
- package/es/platform/service/apis/plat.service.d.ts +0 -7
- package/es/platform/service/apis/plugin.service.d.ts +2 -1
- package/es/platform/service/entities.d.ts +22 -380
- package/package.json +1 -1
|
@@ -917,7 +917,9 @@ export const apiConfig = [
|
|
|
917
917
|
mode: "post",
|
|
918
918
|
method: "postImportExcel",
|
|
919
919
|
path: "importExcel",
|
|
920
|
-
|
|
920
|
+
hasUpload: true,
|
|
921
|
+
hasQuery: true,
|
|
922
|
+
hasData: true
|
|
921
923
|
}
|
|
922
924
|
]
|
|
923
925
|
},
|
|
@@ -1509,62 +1511,6 @@ export const apiConfig = [
|
|
|
1509
1511
|
}
|
|
1510
1512
|
]
|
|
1511
1513
|
},
|
|
1512
|
-
{
|
|
1513
|
-
name: "detailPage",
|
|
1514
|
-
entityName: "detail-page",
|
|
1515
|
-
apis: [
|
|
1516
|
-
{
|
|
1517
|
-
mode: "post",
|
|
1518
|
-
method: "post",
|
|
1519
|
-
path: "",
|
|
1520
|
-
hasData: true
|
|
1521
|
-
},
|
|
1522
|
-
{
|
|
1523
|
-
mode: "delete",
|
|
1524
|
-
method: "delete",
|
|
1525
|
-
path: "",
|
|
1526
|
-
hasQuery: true
|
|
1527
|
-
},
|
|
1528
|
-
{
|
|
1529
|
-
mode: "post",
|
|
1530
|
-
method: "postCopyByIdId",
|
|
1531
|
-
path: "copyById/{id}",
|
|
1532
|
-
hasPathParams: true,
|
|
1533
|
-
hasData: true
|
|
1534
|
-
},
|
|
1535
|
-
{
|
|
1536
|
-
mode: "get",
|
|
1537
|
-
method: "getInfo",
|
|
1538
|
-
path: "info",
|
|
1539
|
-
hasQuery: true
|
|
1540
|
-
},
|
|
1541
|
-
{
|
|
1542
|
-
mode: "get",
|
|
1543
|
-
method: "getList",
|
|
1544
|
-
path: "list"
|
|
1545
|
-
},
|
|
1546
|
-
{
|
|
1547
|
-
mode: "get",
|
|
1548
|
-
method: "getPageList",
|
|
1549
|
-
path: "page/list",
|
|
1550
|
-
hasQuery: true
|
|
1551
|
-
},
|
|
1552
|
-
{
|
|
1553
|
-
mode: "put",
|
|
1554
|
-
method: "putUpdateDesignerJsonId",
|
|
1555
|
-
path: "updateDesignerJson/{id}",
|
|
1556
|
-
hasPathParams: true,
|
|
1557
|
-
hasData: true
|
|
1558
|
-
},
|
|
1559
|
-
{
|
|
1560
|
-
mode: "put",
|
|
1561
|
-
method: "putId",
|
|
1562
|
-
path: "{id}",
|
|
1563
|
-
hasPathParams: true,
|
|
1564
|
-
hasData: true
|
|
1565
|
-
}
|
|
1566
|
-
]
|
|
1567
|
-
},
|
|
1568
1514
|
{
|
|
1569
1515
|
name: "devops",
|
|
1570
1516
|
entityName: "devops",
|
|
@@ -2399,12 +2345,6 @@ export const apiConfig = [
|
|
|
2399
2345
|
path: "page/list",
|
|
2400
2346
|
hasQuery: true
|
|
2401
2347
|
},
|
|
2402
|
-
{
|
|
2403
|
-
mode: "post",
|
|
2404
|
-
method: "postSort",
|
|
2405
|
-
path: "sort",
|
|
2406
|
-
hasData: true
|
|
2407
|
-
},
|
|
2408
2348
|
{
|
|
2409
2349
|
mode: "put",
|
|
2410
2350
|
method: "putId",
|
|
@@ -2526,12 +2466,6 @@ export const apiConfig = [
|
|
|
2526
2466
|
path: "download/{id}",
|
|
2527
2467
|
hasPathParams: true
|
|
2528
2468
|
},
|
|
2529
|
-
{
|
|
2530
|
-
mode: "post",
|
|
2531
|
-
method: "postFrontSave",
|
|
2532
|
-
path: "front/save",
|
|
2533
|
-
hasData: true
|
|
2534
|
-
},
|
|
2535
2469
|
{
|
|
2536
2470
|
mode: "get",
|
|
2537
2471
|
method: "getInfo",
|
|
@@ -2598,7 +2532,9 @@ export const apiConfig = [
|
|
|
2598
2532
|
mode: "post",
|
|
2599
2533
|
method: "postDataImport",
|
|
2600
2534
|
path: "data/import",
|
|
2601
|
-
|
|
2535
|
+
hasUpload: true,
|
|
2536
|
+
hasQuery: true,
|
|
2537
|
+
hasData: true
|
|
2602
2538
|
},
|
|
2603
2539
|
{
|
|
2604
2540
|
mode: "get",
|
|
@@ -2616,7 +2552,9 @@ export const apiConfig = [
|
|
|
2616
2552
|
mode: "post",
|
|
2617
2553
|
method: "postDataValidate",
|
|
2618
2554
|
path: "data/validate",
|
|
2619
|
-
|
|
2555
|
+
hasUpload: true,
|
|
2556
|
+
hasQuery: true,
|
|
2557
|
+
hasData: true
|
|
2620
2558
|
}
|
|
2621
2559
|
]
|
|
2622
2560
|
},
|
|
@@ -2701,12 +2639,6 @@ export const apiConfig = [
|
|
|
2701
2639
|
path: "save",
|
|
2702
2640
|
hasData: true
|
|
2703
2641
|
},
|
|
2704
|
-
{
|
|
2705
|
-
mode: "post",
|
|
2706
|
-
method: "postSync",
|
|
2707
|
-
path: "sync",
|
|
2708
|
-
hasQuery: true
|
|
2709
|
-
},
|
|
2710
2642
|
{
|
|
2711
2643
|
mode: "put",
|
|
2712
2644
|
method: "putUniqueConstraintAddModelKeyFieldKeyType",
|
|
@@ -4194,13 +4126,6 @@ export const apiConfig = [
|
|
|
4194
4126
|
path: "translateModelFieldExp",
|
|
4195
4127
|
hasQuery: true
|
|
4196
4128
|
},
|
|
4197
|
-
{
|
|
4198
|
-
mode: "put",
|
|
4199
|
-
method: "putUniqueKey",
|
|
4200
|
-
path: "unique/{key}",
|
|
4201
|
-
hasPathParams: true,
|
|
4202
|
-
hasQuery: true
|
|
4203
|
-
},
|
|
4204
4129
|
{
|
|
4205
4130
|
mode: "get",
|
|
4206
4131
|
method: "getUnrelatedList",
|
|
@@ -4241,8 +4166,7 @@ export const apiConfig = [
|
|
|
4241
4166
|
{
|
|
4242
4167
|
mode: "get",
|
|
4243
4168
|
method: "getDataModelList",
|
|
4244
|
-
path: "data-model/list"
|
|
4245
|
-
hasQuery: true
|
|
4169
|
+
path: "data-model/list"
|
|
4246
4170
|
},
|
|
4247
4171
|
{
|
|
4248
4172
|
mode: "get",
|
|
@@ -4265,8 +4189,7 @@ export const apiConfig = [
|
|
|
4265
4189
|
{
|
|
4266
4190
|
mode: "get",
|
|
4267
4191
|
method: "getViewModelList",
|
|
4268
|
-
path: "view-model/list"
|
|
4269
|
-
hasQuery: true
|
|
4192
|
+
path: "view-model/list"
|
|
4270
4193
|
},
|
|
4271
4194
|
{
|
|
4272
4195
|
mode: "put",
|
|
@@ -7703,92 +7626,6 @@ export const apiConfig = [
|
|
|
7703
7626
|
}
|
|
7704
7627
|
]
|
|
7705
7628
|
},
|
|
7706
|
-
{
|
|
7707
|
-
name: "transaction",
|
|
7708
|
-
entityName: "transaction",
|
|
7709
|
-
apis: [
|
|
7710
|
-
{
|
|
7711
|
-
mode: "post",
|
|
7712
|
-
method: "post",
|
|
7713
|
-
path: "",
|
|
7714
|
-
hasData: true
|
|
7715
|
-
},
|
|
7716
|
-
{
|
|
7717
|
-
mode: "delete",
|
|
7718
|
-
method: "delete",
|
|
7719
|
-
path: "",
|
|
7720
|
-
hasQuery: true
|
|
7721
|
-
},
|
|
7722
|
-
{
|
|
7723
|
-
mode: "post",
|
|
7724
|
-
method: "postCopy",
|
|
7725
|
-
path: "copy",
|
|
7726
|
-
hasData: true
|
|
7727
|
-
},
|
|
7728
|
-
{
|
|
7729
|
-
mode: "post",
|
|
7730
|
-
method: "postCopyVersionId",
|
|
7731
|
-
path: "copyVersion/{id}",
|
|
7732
|
-
hasPathParams: true,
|
|
7733
|
-
hasData: true
|
|
7734
|
-
},
|
|
7735
|
-
{
|
|
7736
|
-
mode: "get",
|
|
7737
|
-
method: "getGetVersionById",
|
|
7738
|
-
path: "getVersionById",
|
|
7739
|
-
hasQuery: true
|
|
7740
|
-
},
|
|
7741
|
-
{
|
|
7742
|
-
mode: "get",
|
|
7743
|
-
method: "getInfo",
|
|
7744
|
-
path: "info",
|
|
7745
|
-
hasQuery: true
|
|
7746
|
-
},
|
|
7747
|
-
{
|
|
7748
|
-
mode: "get",
|
|
7749
|
-
method: "getList",
|
|
7750
|
-
path: "list"
|
|
7751
|
-
},
|
|
7752
|
-
{
|
|
7753
|
-
mode: "get",
|
|
7754
|
-
method: "getListVersionById",
|
|
7755
|
-
path: "listVersionById",
|
|
7756
|
-
hasQuery: true
|
|
7757
|
-
},
|
|
7758
|
-
{
|
|
7759
|
-
mode: "get",
|
|
7760
|
-
method: "getPageList",
|
|
7761
|
-
path: "page/list",
|
|
7762
|
-
hasQuery: true
|
|
7763
|
-
},
|
|
7764
|
-
{
|
|
7765
|
-
mode: "delete",
|
|
7766
|
-
method: "deleteRemoveVersionById",
|
|
7767
|
-
path: "removeVersionById",
|
|
7768
|
-
hasQuery: true
|
|
7769
|
-
},
|
|
7770
|
-
{
|
|
7771
|
-
mode: "post",
|
|
7772
|
-
method: "postSaveVersion",
|
|
7773
|
-
path: "saveVersion",
|
|
7774
|
-
hasData: true
|
|
7775
|
-
},
|
|
7776
|
-
{
|
|
7777
|
-
mode: "put",
|
|
7778
|
-
method: "putUpdateVersionByIdId",
|
|
7779
|
-
path: "updateVersionById/{id}",
|
|
7780
|
-
hasPathParams: true,
|
|
7781
|
-
hasData: true
|
|
7782
|
-
},
|
|
7783
|
-
{
|
|
7784
|
-
mode: "put",
|
|
7785
|
-
method: "putId",
|
|
7786
|
-
path: "{id}",
|
|
7787
|
-
hasPathParams: true,
|
|
7788
|
-
hasData: true
|
|
7789
|
-
}
|
|
7790
|
-
]
|
|
7791
|
-
},
|
|
7792
7629
|
{
|
|
7793
7630
|
name: "userGroup",
|
|
7794
7631
|
entityName: "user-group",
|
|
@@ -8340,8 +8177,10 @@ export const apiConfig = [
|
|
|
8340
8177
|
mode: "post",
|
|
8341
8178
|
method: "postModelComprehensiveBizServiceModelCategoryModelKeyUpload",
|
|
8342
8179
|
path: "model-comprehensive/biz-service/{modelCategory}/{modelKey}/upload",
|
|
8180
|
+
hasUpload: true,
|
|
8343
8181
|
hasPathParams: true,
|
|
8344
|
-
hasQuery: true
|
|
8182
|
+
hasQuery: true,
|
|
8183
|
+
hasData: true
|
|
8345
8184
|
},
|
|
8346
8185
|
{
|
|
8347
8186
|
mode: "get",
|
|
@@ -682,8 +682,9 @@ export interface ApiService {
|
|
|
682
682
|
postModelComprehensiveBizServiceModelCategoryModelKeyUpload(
|
|
683
683
|
path: postModelComprehensiveBizServiceModelCategoryModelKeyUploadPathParams,
|
|
684
684
|
query: postModelComprehensiveBizServiceModelCategoryModelKeyUploadQuery,
|
|
685
|
+
data: UploadFileData,
|
|
685
686
|
config?: Partial<AxiosRequestConfig>,
|
|
686
|
-
): Promise<object
|
|
687
|
+
): Promise<IHttpResponse<object>>;
|
|
687
688
|
/**
|
|
688
689
|
* 业务服务get请求接口
|
|
689
690
|
*/
|
|
@@ -87,6 +87,10 @@ export interface getPageListQuery extends IObject {
|
|
|
87
87
|
* 更新人id
|
|
88
88
|
*/
|
|
89
89
|
modifyUserId?: string;
|
|
90
|
+
/**
|
|
91
|
+
* 模块类型
|
|
92
|
+
*/
|
|
93
|
+
module?: string;
|
|
90
94
|
/**
|
|
91
95
|
* 操作人
|
|
92
96
|
*/
|
|
@@ -137,6 +141,10 @@ export interface getReversePageListQuery extends IObject {
|
|
|
137
141
|
* 工单id
|
|
138
142
|
*/
|
|
139
143
|
mfgOrderId?: string;
|
|
144
|
+
/**
|
|
145
|
+
* 模块类型
|
|
146
|
+
*/
|
|
147
|
+
module?: string;
|
|
140
148
|
/**
|
|
141
149
|
* 操作人
|
|
142
150
|
*/
|
|
@@ -145,10 +153,6 @@ export interface getReversePageListQuery extends IObject {
|
|
|
145
153
|
* 操作人id
|
|
146
154
|
*/
|
|
147
155
|
operatorId?: string;
|
|
148
|
-
/**
|
|
149
|
-
* 订单号
|
|
150
|
-
*/
|
|
151
|
-
orderNo?: string;
|
|
152
156
|
/**
|
|
153
157
|
* 页码
|
|
154
158
|
*/
|
|
@@ -165,10 +169,6 @@ export interface getReversePageListQuery extends IObject {
|
|
|
165
169
|
* 记录单号
|
|
166
170
|
*/
|
|
167
171
|
recordNo?: string;
|
|
168
|
-
/**
|
|
169
|
-
* 关联批次
|
|
170
|
-
*/
|
|
171
|
-
relatedLotNo?: string;
|
|
172
172
|
/**
|
|
173
173
|
* 排序字段
|
|
174
174
|
*/
|
|
@@ -3,7 +3,6 @@ import type {
|
|
|
3
3
|
EnumModelFieldRequest,
|
|
4
4
|
EnumModelFieldDragRequest,
|
|
5
5
|
EnumModelFieldResponse,
|
|
6
|
-
EnumModelFieldSortReq,
|
|
7
6
|
} from '../entities';
|
|
8
7
|
|
|
9
8
|
export interface deleteQuery extends IObject {
|
|
@@ -114,13 +113,6 @@ export interface EnumModelFieldService {
|
|
|
114
113
|
query: getPageListQuery,
|
|
115
114
|
config?: Partial<AxiosRequestConfig>,
|
|
116
115
|
): Promise<IPage<EnumModelFieldResponse>>;
|
|
117
|
-
/**
|
|
118
|
-
* 拖拽排序
|
|
119
|
-
*/
|
|
120
|
-
postSort(
|
|
121
|
-
data: EnumModelFieldSortReq,
|
|
122
|
-
config?: Partial<AxiosRequestConfig>,
|
|
123
|
-
): Promise<string>;
|
|
124
116
|
/**
|
|
125
117
|
* 修改
|
|
126
118
|
*/
|
|
@@ -4,7 +4,6 @@ import type {
|
|
|
4
4
|
ExcelTmplRequest,
|
|
5
5
|
ExcelTemplateConfigReq,
|
|
6
6
|
ExcelTmplResponse,
|
|
7
|
-
ExcelTemplateAndConfigReq,
|
|
8
7
|
ExcelTemplateConfigV1Req,
|
|
9
8
|
} from '../entities';
|
|
10
9
|
|
|
@@ -138,13 +137,6 @@ export interface ExcelTmplService {
|
|
|
138
137
|
path: getDownloadIdPathParams,
|
|
139
138
|
config?: Partial<AxiosRequestConfig>,
|
|
140
139
|
): Promise<any>;
|
|
141
|
-
/**
|
|
142
|
-
* 前台模板保存
|
|
143
|
-
*/
|
|
144
|
-
postFrontSave(
|
|
145
|
-
data: ExcelTemplateAndConfigReq,
|
|
146
|
-
config?: Partial<AxiosRequestConfig>,
|
|
147
|
-
): Promise<string>;
|
|
148
140
|
/**
|
|
149
141
|
* 详情
|
|
150
142
|
*/
|
|
@@ -122,8 +122,9 @@ export interface ExcelService {
|
|
|
122
122
|
*/
|
|
123
123
|
postDataImport(
|
|
124
124
|
query: postDataImportQuery,
|
|
125
|
+
data: UploadFileData,
|
|
125
126
|
config?: Partial<AxiosRequestConfig>,
|
|
126
|
-
): Promise<object
|
|
127
|
+
): Promise<IHttpResponse<object>>;
|
|
127
128
|
/**
|
|
128
129
|
* excel数据导入数据预览
|
|
129
130
|
*/
|
|
@@ -143,6 +144,7 @@ export interface ExcelService {
|
|
|
143
144
|
*/
|
|
144
145
|
postDataValidate(
|
|
145
146
|
query: postDataValidateQuery,
|
|
147
|
+
data: UploadFileData,
|
|
146
148
|
config?: Partial<AxiosRequestConfig>,
|
|
147
|
-
): Promise<ExcelValidateResponse
|
|
149
|
+
): Promise<IHttpResponse<ExcelValidateResponse>>;
|
|
148
150
|
}
|
|
@@ -85,12 +85,6 @@ 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
|
-
}
|
|
94
88
|
export interface putUniqueConstraintAddModelKeyFieldKeyTypePathParams {
|
|
95
89
|
modelKey: string;
|
|
96
90
|
fieldKey: string;
|
|
@@ -190,13 +184,6 @@ export interface FieldMetaService {
|
|
|
190
184
|
data: FieldMetaVO,
|
|
191
185
|
config?: Partial<AxiosRequestConfig>,
|
|
192
186
|
): Promise<string>;
|
|
193
|
-
/**
|
|
194
|
-
* 同步主模型字段
|
|
195
|
-
*/
|
|
196
|
-
postSync(
|
|
197
|
-
query: postSyncQuery,
|
|
198
|
-
config?: Partial<AxiosRequestConfig>,
|
|
199
|
-
): Promise<string>;
|
|
200
187
|
/**
|
|
201
188
|
* 添加唯一约束(后门接口,谨慎使用!)
|
|
202
189
|
*/
|
|
@@ -146,15 +146,6 @@ export interface getTranslateModelFieldExpQuery extends IObject {
|
|
|
146
146
|
*/
|
|
147
147
|
exp: string;
|
|
148
148
|
}
|
|
149
|
-
export interface putUniqueKeyQuery extends IObject {
|
|
150
|
-
/**
|
|
151
|
-
* 模型key
|
|
152
|
-
*/
|
|
153
|
-
modelKey: string;
|
|
154
|
-
}
|
|
155
|
-
export interface putUniqueKeyPathParams {
|
|
156
|
-
key: string;
|
|
157
|
-
}
|
|
158
149
|
export interface getUnrelatedListQuery extends IObject {
|
|
159
150
|
/**
|
|
160
151
|
* 模型key
|
|
@@ -340,14 +331,6 @@ export interface ModelMetaService {
|
|
|
340
331
|
query: getTranslateModelFieldExpQuery,
|
|
341
332
|
config?: Partial<AxiosRequestConfig>,
|
|
342
333
|
): Promise<string>;
|
|
343
|
-
/**
|
|
344
|
-
* 设置模型主字段
|
|
345
|
-
*/
|
|
346
|
-
putUniqueKey(
|
|
347
|
-
path: putUniqueKeyPathParams,
|
|
348
|
-
query: putUniqueKeyQuery,
|
|
349
|
-
config?: Partial<AxiosRequestConfig>,
|
|
350
|
-
): Promise<string>;
|
|
351
334
|
/**
|
|
352
335
|
* 查询模型列表过滤已添加过数据权限的模型
|
|
353
336
|
*/
|
|
@@ -7,12 +7,6 @@ export interface deleteQuery extends IObject {
|
|
|
7
7
|
*/
|
|
8
8
|
ids: string;
|
|
9
9
|
}
|
|
10
|
-
export interface getDataModelListQuery extends IObject {
|
|
11
|
-
/**
|
|
12
|
-
* 搜索关键字
|
|
13
|
-
*/
|
|
14
|
-
keyword?: string;
|
|
15
|
-
}
|
|
16
10
|
export interface getInfoQuery extends IObject {
|
|
17
11
|
/**
|
|
18
12
|
* id
|
|
@@ -21,11 +15,7 @@ export interface getInfoQuery extends IObject {
|
|
|
21
15
|
}
|
|
22
16
|
export interface getListQuery extends IObject {
|
|
23
17
|
/**
|
|
24
|
-
*
|
|
25
|
-
*/
|
|
26
|
-
keyword?: string;
|
|
27
|
-
/**
|
|
28
|
-
* 模型key
|
|
18
|
+
* modelKey
|
|
29
19
|
*/
|
|
30
20
|
modelKey: string;
|
|
31
21
|
}
|
|
@@ -39,12 +29,6 @@ export interface getPageListQuery extends IObject {
|
|
|
39
29
|
*/
|
|
40
30
|
pageSize?: number;
|
|
41
31
|
}
|
|
42
|
-
export interface getViewModelListQuery extends IObject {
|
|
43
|
-
/**
|
|
44
|
-
* 搜索关键字
|
|
45
|
-
*/
|
|
46
|
-
keyword?: string;
|
|
47
|
-
}
|
|
48
32
|
export interface putIdPathParams {
|
|
49
33
|
id: string;
|
|
50
34
|
}
|
|
@@ -67,7 +51,6 @@ export interface ModelMethodService {
|
|
|
67
51
|
* 数据模型方法列表
|
|
68
52
|
*/
|
|
69
53
|
getDataModelList(
|
|
70
|
-
query: getDataModelListQuery,
|
|
71
54
|
config?: Partial<AxiosRequestConfig>,
|
|
72
55
|
): Promise<ModelMethodResponse[]>;
|
|
73
56
|
/**
|
|
@@ -95,7 +78,6 @@ export interface ModelMethodService {
|
|
|
95
78
|
* 视图模型方法列表
|
|
96
79
|
*/
|
|
97
80
|
getViewModelList(
|
|
98
|
-
query: getViewModelListQuery,
|
|
99
81
|
config?: Partial<AxiosRequestConfig>,
|
|
100
82
|
): Promise<ModelMethodResponse[]>;
|
|
101
83
|
/**
|
|
@@ -33,6 +33,10 @@ export interface getAppendixFormListQuery extends IObject {
|
|
|
33
33
|
* 工单ID
|
|
34
34
|
*/
|
|
35
35
|
mfgOrderId?: string;
|
|
36
|
+
/**
|
|
37
|
+
* 模块类型
|
|
38
|
+
*/
|
|
39
|
+
module?: string;
|
|
36
40
|
}
|
|
37
41
|
export interface getDataCollectionListAllQuery extends IObject {
|
|
38
42
|
/**
|
|
@@ -81,6 +85,10 @@ export interface getDhrFormListQuery extends IObject {
|
|
|
81
85
|
* 工单ID
|
|
82
86
|
*/
|
|
83
87
|
mfgOrderId?: string;
|
|
88
|
+
/**
|
|
89
|
+
* 模块类型
|
|
90
|
+
*/
|
|
91
|
+
module?: string;
|
|
84
92
|
/**
|
|
85
93
|
* 类型(production/rework)
|
|
86
94
|
*/
|
|
@@ -289,10 +297,6 @@ export interface getPageListQuery extends IObject {
|
|
|
289
297
|
* 状态
|
|
290
298
|
*/
|
|
291
299
|
instanceStatus?: string;
|
|
292
|
-
/**
|
|
293
|
-
* 状态不等于
|
|
294
|
-
*/
|
|
295
|
-
instanceStatusNe?: string;
|
|
296
300
|
/**
|
|
297
301
|
* 更新人id
|
|
298
302
|
*/
|
|
@@ -387,6 +391,10 @@ export interface getRelateFormPageListQuery extends IObject {
|
|
|
387
391
|
* Lot/SN 编号
|
|
388
392
|
*/
|
|
389
393
|
materialNo: string;
|
|
394
|
+
/**
|
|
395
|
+
* 模块类型
|
|
396
|
+
*/
|
|
397
|
+
module?: string;
|
|
390
398
|
/**
|
|
391
399
|
* 页码
|
|
392
400
|
*/
|
|
@@ -423,10 +431,6 @@ export interface getReverseTracePageListQuery extends IObject {
|
|
|
423
431
|
* 填报人
|
|
424
432
|
*/
|
|
425
433
|
operatorId?: string;
|
|
426
|
-
/**
|
|
427
|
-
* 订单号
|
|
428
|
-
*/
|
|
429
|
-
orderNo?: string;
|
|
430
434
|
/**
|
|
431
435
|
* 页码
|
|
432
436
|
*/
|
|
@@ -447,10 +451,6 @@ export interface getReverseTracePageListQuery extends IObject {
|
|
|
447
451
|
* 记录单号
|
|
448
452
|
*/
|
|
449
453
|
recordNo?: string;
|
|
450
|
-
/**
|
|
451
|
-
* 关联批次
|
|
452
|
-
*/
|
|
453
|
-
relatedLotNo?: string;
|
|
454
454
|
/**
|
|
455
455
|
* 排序字段
|
|
456
456
|
*/
|
|
@@ -18,10 +18,6 @@ export interface getInfoQuery extends IObject {
|
|
|
18
18
|
id: string;
|
|
19
19
|
}
|
|
20
20
|
export interface getInfoTreeQuery extends IObject {
|
|
21
|
-
/**
|
|
22
|
-
* 模型KEY
|
|
23
|
-
*/
|
|
24
|
-
modelKey: string;
|
|
25
21
|
/**
|
|
26
22
|
* traceLogId
|
|
27
23
|
*/
|
|
@@ -32,10 +28,6 @@ export interface getInfoTreeByIdQuery extends IObject {
|
|
|
32
28
|
* id
|
|
33
29
|
*/
|
|
34
30
|
id: string;
|
|
35
|
-
/**
|
|
36
|
-
* 模型KEY
|
|
37
|
-
*/
|
|
38
|
-
modelKey: string;
|
|
39
31
|
}
|
|
40
32
|
export interface getPageListQuery extends IObject {
|
|
41
33
|
/**
|
|
@@ -48,10 +40,6 @@ export interface getPageListQuery extends IObject {
|
|
|
48
40
|
pageSize?: number;
|
|
49
41
|
}
|
|
50
42
|
export interface getPageListByRecodeIdQuery extends IObject {
|
|
51
|
-
/**
|
|
52
|
-
* 模型KEY
|
|
53
|
-
*/
|
|
54
|
-
modelKey: string;
|
|
55
43
|
/**
|
|
56
44
|
* 页码
|
|
57
45
|
*/
|