@gct-paas/api 0.1.4-dev.0 → 0.1.4-dev.2

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.
@@ -236,6 +236,10 @@ export interface getAppModelMetaListQuery {
236
236
  * env
237
237
  */
238
238
  env: string;
239
+ /**
240
+ * module
241
+ */
242
+ module: string;
239
243
  }
240
244
  export interface getAppPublishLogInfoQuery {
241
245
  /**
@@ -34,10 +34,6 @@ export interface getListQuery {
34
34
  * 结束时间
35
35
  */
36
36
  endTime?: string;
37
- /**
38
- * 所属模块(实体、枚举、web页面)
39
- */
40
- module?: string;
41
37
  /**
42
38
  * 应用名称
43
39
  */
@@ -108,6 +104,10 @@ export interface getListCompleteQuery {
108
104
  *
109
105
  */
110
106
  modifyUserName?: string;
107
+ /**
108
+ * 所属模块(实体、枚举、web页面 、view_model_module/视图模型模块 、data_model/数据模型模块、document_module/单据、pad_module/pad页面设计)
109
+ */
110
+ module?: string;
111
111
  /**
112
112
  *
113
113
  */
@@ -178,6 +178,10 @@ export interface getPageQuery {
178
178
  *
179
179
  */
180
180
  modifyUserName?: string;
181
+ /**
182
+ * 所属模块(实体、枚举、web页面 、view_model_module/视图模型模块 、data_model/数据模型模块、document_module/单据、pad_module/pad页面设计)
183
+ */
184
+ module?: string;
181
185
  /**
182
186
  *
183
187
  */
@@ -216,10 +220,6 @@ export interface getPageListQuery {
216
220
  * 结束时间
217
221
  */
218
222
  endTime?: string;
219
- /**
220
- * 所属模块(实体、枚举、web页面)
221
- */
222
- module?: string;
223
223
  /**
224
224
  * 应用名称
225
225
  */
@@ -2,6 +2,10 @@ import type { AxiosRequestConfig } from 'axios';
2
2
  import type { DataSourceDTO, DataSourceSelectRequest } from '../entities';
3
3
 
4
4
  export interface getPageListQuery {
5
+ /**
6
+ * enabled
7
+ */
8
+ enabled?: number;
5
9
  /**
6
10
  * name
7
11
  */
@@ -27,6 +27,10 @@ export interface getFindMaterialNoQuery {
27
27
  * 批次号
28
28
  */
29
29
  materialNo?: string;
30
+ /**
31
+ * 模块类型
32
+ */
33
+ module?: string;
30
34
  /**
31
35
  * 页码
32
36
  */
@@ -87,6 +91,10 @@ export interface getPageListQuery {
87
91
  * 更新人id
88
92
  */
89
93
  modifyUserId?: string;
94
+ /**
95
+ * 模块类型
96
+ */
97
+ module?: string;
90
98
  /**
91
99
  * 操作人
92
100
  */
@@ -137,6 +145,10 @@ export interface getReversePageListQuery {
137
145
  * 工单id
138
146
  */
139
147
  mfgOrderId?: string;
148
+ /**
149
+ * 模块类型
150
+ */
151
+ module?: string;
140
152
  /**
141
153
  * 操作人
142
154
  */
@@ -183,6 +195,10 @@ export interface getRunningPageQuery {
183
195
  * 批次号
184
196
  */
185
197
  materialNo?: string;
198
+ /**
199
+ * 模块类型
200
+ */
201
+ module?: string;
186
202
  /**
187
203
  * 页码
188
204
  */
@@ -2,6 +2,10 @@ import type { AxiosRequestConfig } from 'axios';
2
2
  import type {} from '../entities';
3
3
 
4
4
  export interface postPdfEncodeQuery {
5
+ /**
6
+ * dpi(越高图片越清晰,转换越慢)
7
+ */
8
+ dpi?: string;
5
9
  /**
6
10
  * pdf相对地址
7
11
  */
@@ -33,6 +33,10 @@ export interface getAppendixFormListQuery {
33
33
  * 工单ID
34
34
  */
35
35
  mfgOrderId?: string;
36
+ /**
37
+ * 模块类型
38
+ */
39
+ module?: string;
36
40
  }
37
41
  export interface getDataCollectionListAllQuery {
38
42
  /**
@@ -59,6 +63,10 @@ export interface getDetailQuery {
59
63
  * id
60
64
  */
61
65
  id: string;
66
+ /**
67
+ * nodeKey
68
+ */
69
+ nodeKey?: string;
62
70
  /**
63
71
  * routingOperationId
64
72
  */
@@ -77,6 +85,10 @@ export interface getDhrFormListQuery {
77
85
  * 工单ID
78
86
  */
79
87
  mfgOrderId?: string;
88
+ /**
89
+ * 模块类型
90
+ */
91
+ module?: string;
80
92
  /**
81
93
  * 类型(production/rework)
82
94
  */
@@ -91,6 +103,10 @@ export interface getFindByMaterialNoQuery {
91
103
  * mfgOrderId
92
104
  */
93
105
  mfgOrderId?: string;
106
+ /**
107
+ * module
108
+ */
109
+ module?: string;
94
110
  }
95
111
  export interface getFindByMaterialNoAndDocOutlineIdQuery {
96
112
  /**
@@ -379,6 +395,10 @@ export interface getRelateFormPageListQuery {
379
395
  * Lot/SN 编号
380
396
  */
381
397
  materialNo: string;
398
+ /**
399
+ * 模块类型
400
+ */
401
+ module?: string;
382
402
  /**
383
403
  * 页码
384
404
  */
@@ -10632,6 +10632,12 @@ export interface FormRelateDTO {
10632
10632
  * @type string
10633
10633
  */
10634
10634
  name?: string;
10635
+ /**
10636
+ *
10637
+ *
10638
+ * @type string
10639
+ */
10640
+ officeType?: string;
10635
10641
  /**
10636
10642
  * 线下版本号
10637
10643
  *
@@ -17642,6 +17648,12 @@ export interface OnlineFormInstance {
17642
17648
  * @type string
17643
17649
  */
17644
17650
  id?: string;
17651
+ /**
17652
+ *
17653
+ *
17654
+ * @type string
17655
+ */
17656
+ instanceRelationBusinessId?: string;
17645
17657
  /**
17646
17658
  *
17647
17659
  *
@@ -17714,6 +17726,12 @@ export interface OnlineFormInstance {
17714
17726
  * @type number
17715
17727
  */
17716
17728
  ofRequired?: number;
17729
+ /**
17730
+ *
17731
+ *
17732
+ * @type string
17733
+ */
17734
+ officeType?: string;
17717
17735
  /**
17718
17736
  *
17719
17737
  *
@@ -18072,6 +18090,12 @@ export interface OnlineFormInstanceRelationInfoResponse {
18072
18090
  * @type string
18073
18091
  */
18074
18092
  ofSerialNo?: string;
18093
+ /**
18094
+ * office类型
18095
+ *
18096
+ * @type string
18097
+ */
18098
+ officeType?: string;
18075
18099
  /**
18076
18100
  * 产品名称
18077
18101
  *
@@ -18424,6 +18448,12 @@ export interface OnlineFormInstanceResponse {
18424
18448
  * @type number
18425
18449
  */
18426
18450
  ofRequired?: number;
18451
+ /**
18452
+ *
18453
+ *
18454
+ * @type string
18455
+ */
18456
+ officeType?: string;
18427
18457
  /**
18428
18458
  * 操作
18429
18459
  *
@@ -28690,6 +28720,12 @@ export interface ProductReleaseFormInstanctDTO {
28690
28720
  * @type string
28691
28721
  */
28692
28722
  id?: string;
28723
+ /**
28724
+ *
28725
+ *
28726
+ * @type string
28727
+ */
28728
+ instanceRelationBusinessId?: string;
28693
28729
  /**
28694
28730
  *
28695
28731
  *
@@ -28762,6 +28798,12 @@ export interface ProductReleaseFormInstanctDTO {
28762
28798
  * @type number
28763
28799
  */
28764
28800
  ofRequired?: number;
28801
+ /**
28802
+ *
28803
+ *
28804
+ * @type string
28805
+ */
28806
+ officeType?: string;
28765
28807
  /**
28766
28808
  *
28767
28809
  *
@@ -28944,6 +28986,12 @@ export interface ProductReleaseFormResponse {
28944
28986
  * @type OnlineFormInstanceResponse
28945
28987
  */
28946
28988
  instance?: OnlineFormInstanceResponse;
28989
+ /**
28990
+ * 表单实例
28991
+ *
28992
+ * @type OnlineFormInstanceResponse[]
28993
+ */
28994
+ instanceList?: OnlineFormInstanceResponse[];
28947
28995
  /**
28948
28996
  * 表单模板
28949
28997
  *
@@ -118,6 +118,7 @@ export const apiConfig = [
118
118
  mode: "post",
119
119
  method: "postImport",
120
120
  path: "import",
121
+ hasUpload: true,
121
122
  hasQuery: true,
122
123
  hasData: true
123
124
  },
@@ -141,7 +142,7 @@ export const apiConfig = [
141
142
  {
142
143
  mode: "put",
143
144
  method: "putId",
144
- path: "",
145
+ path: "{id}",
145
146
  hasPathParams: true,
146
147
  hasData: true
147
148
  }
@@ -212,7 +213,7 @@ export const apiConfig = [
212
213
  {
213
214
  mode: "put",
214
215
  method: "putId",
215
- path: "",
216
+ path: "{id}",
216
217
  hasPathParams: true,
217
218
  hasData: true
218
219
  }
@@ -267,7 +268,7 @@ export const apiConfig = [
267
268
  {
268
269
  mode: "put",
269
270
  method: "putId",
270
- path: "",
271
+ path: "{id}",
271
272
  hasPathParams: true,
272
273
  hasData: true
273
274
  }
@@ -321,7 +322,7 @@ export const apiConfig = [
321
322
  {
322
323
  mode: "put",
323
324
  method: "putId",
324
- path: "",
325
+ path: "{id}",
325
326
  hasPathParams: true,
326
327
  hasData: true
327
328
  }
@@ -345,6 +346,7 @@ export const apiConfig = [
345
346
  mode: "post",
346
347
  method: "postImport",
347
348
  path: "import",
349
+ hasUpload: true,
348
350
  hasQuery: true,
349
351
  hasData: true
350
352
  },