@ningboyz/types 1.0.3 → 1.0.6

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/index.ts CHANGED
@@ -11,18 +11,17 @@ import * as TPzpt from "./src/pzpt";
11
11
  import * as TTabl from "./src/tabl";
12
12
  import * as TWlzf from "./src/wlzf";
13
13
  import * as TWtui from "./src/wtui";
14
- import * as TYzpz from "./src/yzpz";
15
14
  import * as TWldy from "./src/wldy";
16
15
  import * as TStore from "./src/store";
17
16
  import * as TApp from "./src/app";
18
17
 
19
18
  export {
20
19
  TApp,
21
- IBaseResponse,
22
- IConfig,
23
- IAboutConfig,
24
- IBaseConfig,
25
- IResponse,
20
+ type IBaseResponse,
21
+ type IConfig,
22
+ type IAboutConfig,
23
+ type IBaseConfig,
24
+ type IResponse,
26
25
  Const,
27
26
  Enums,
28
27
  TCore,
@@ -33,7 +32,6 @@ export {
33
32
  TTabl,
34
33
  TWlzf,
35
34
  TWtui,
36
- TYzpz,
37
35
  TWldy,
38
36
  TStore
39
37
  };
package/package.json CHANGED
@@ -1,13 +1,12 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
- "version": "1.0.3",
3
+ "version": "1.0.6",
4
4
  "private": false,
5
5
  "description": "宁波甬政类型库",
6
6
  "author": "nbyt-syq",
7
7
  "license": "ISC",
8
8
  "keywords": [],
9
9
  "main": "index.ts",
10
- "types": "index.ts",
11
10
  "scripts": {
12
11
  "test": "echo \"Error: no test specified\" && exit 1"
13
12
  },
@@ -16,10 +15,8 @@
16
15
  "registry": "https://registry.npmjs.org/"
17
16
  },
18
17
  "dependencies": {
19
- "@aximario/json-tree": "2.2.4",
20
- "lodash": "4.17.21"
18
+ "@aximario/json-tree": "2.2.4"
21
19
  },
22
20
  "devDependencies": {
23
- "@types/lodash": "4.17.7"
24
21
  }
25
22
  }
@@ -0,0 +1,4 @@
1
+
2
+ export const tableLeft = "left";
3
+ export const tableCenter = "center";
4
+ export const tableRight = "right";
@@ -0,0 +1,392 @@
1
+ //审核状态
2
+
3
+ import { CONST_MODULE_HTGL_HTSQ } from "./const_module";
4
+
5
+ /**
6
+ * 终止/作废
7
+ */
8
+ export const CONST_STAT_DARK = -2;
9
+
10
+ /**
11
+ * 退回
12
+ */
13
+ export const CONST_STAT_UNDO = -1;
14
+
15
+ /**
16
+ * 制单
17
+ */
18
+ export const CONST_STAT_MAKE = 0;
19
+
20
+ /**
21
+ * 审核中
22
+ */
23
+ export const CONST_STAT_WAIT = 1;
24
+
25
+ /**
26
+ * 终审
27
+ */
28
+ export const CONST_STAT_DONE = 2;
29
+
30
+ /**
31
+ * 暂存
32
+ */
33
+ export const CONST_STAT_TEMP = 3;
34
+
35
+ export type AuditStat = typeof CONST_STAT_UNDO | typeof CONST_STAT_MAKE | typeof CONST_STAT_WAIT | typeof CONST_STAT_DONE | typeof CONST_STAT_DARK | typeof CONST_STAT_TEMP;
36
+
37
+ //tabs 页签
38
+
39
+ /**
40
+ * 待处理业务
41
+ */
42
+ export const CONST_TABS_TODO = "CONST_TABS_TODO";
43
+
44
+ /**
45
+ * 已处理业务
46
+ */
47
+ export const CONST_TABS_PROC = "CONST_TABS_PROC";
48
+
49
+ /**
50
+ * 所有业务
51
+ */
52
+ export const CONST_TABS_ALL = "CONST_TABS_ALL";
53
+
54
+ /**
55
+ * 待审核业务
56
+ */
57
+ export const CONST_TABS_AUDIT_TODO = "CONST_TABS_AUDIT_TODO";
58
+
59
+ /**
60
+ * 已处理业务(审核)
61
+ */
62
+ export const CONST_TABS_AUDIT_PROC = "CONST_TABS_AUDIT_PROC";
63
+
64
+ /**
65
+ * 所有业务(审核)
66
+ */
67
+ export const CONST_TABS_AUDIT_ALL = "CONST_TABS_AUDIT_ALL";
68
+
69
+ /**
70
+ * 网络支付 未支付
71
+ */
72
+ export const CONST_TABS_WLZF_WAIT = "CONST_TABS_WLZF_WAIT";
73
+
74
+ /**
75
+ * 网络支付 已支付
76
+ */
77
+ export const CONST_TABS_WLZF_DONE = "CONST_TABS_WLZF_DONE";
78
+
79
+ /**
80
+ * 撤消申请审核
81
+ */
82
+ export const CONST_TABS_AUDIT_UNDO = "CONST_TABS_AUDIT_UNDO";
83
+
84
+ /**
85
+ * 申请解锁
86
+ */
87
+ export const CONST_TABS_LOCK = "CONST_TABS_LOCK";
88
+
89
+ /**
90
+ * 已解锁
91
+ */
92
+ export const CONST_TABS_ALREADY_LOCK = "CONST_TABS_ALREADY_LOCK";
93
+
94
+ /**
95
+ * 解锁审核
96
+ */
97
+ export const CONST_TABS_AUDIT_LOCK = "CONST_TABS_AUDIT_LOCK";
98
+
99
+ /**
100
+ * 待提取
101
+ */
102
+ export const CONST_TABS_EXTRACT_LOCK = "CONST_TABS_EXTRACT_LOCK";
103
+ /**
104
+ * 所有业务(未处理+待提取)
105
+ */
106
+ export const CONST_TABS_AUDIT_LOCK_ALL = "CONST_TABS_AUDIT_LOCK_ALL";
107
+
108
+ /**
109
+ * 事项查询
110
+ */
111
+ export const CONST_TABS_SXCX_ALL = "CONST_TABS_SXCX_ALL";
112
+
113
+ /**
114
+ * 页签类型
115
+ */
116
+ export type TabsStat =
117
+ | typeof CONST_TABS_AUDIT_UNDO
118
+ | typeof CONST_TABS_TODO
119
+ | typeof CONST_TABS_PROC
120
+ | typeof CONST_TABS_ALL
121
+ | typeof CONST_TABS_AUDIT_TODO
122
+ | typeof CONST_TABS_AUDIT_PROC
123
+ | typeof CONST_TABS_AUDIT_ALL
124
+ | typeof CONST_TABS_WLZF_WAIT
125
+ | typeof CONST_TABS_WLZF_DONE
126
+ | typeof CONST_STATUS_NOCREATE
127
+ | typeof CONST_TABS_LOCK
128
+ | typeof CONST_TABS_AUDIT_LOCK
129
+ | typeof CONST_TABS_EXTRACT_LOCK
130
+ | typeof CONST_TABS_ALREADY_LOCK
131
+ | typeof CONST_TABS_AUDIT_LOCK_ALL
132
+ | typeof CONST_TABS_SXCX_ALL;
133
+
134
+ //============按钮名称===============
135
+
136
+ /**
137
+ * 新增按钮
138
+ */
139
+ export const CONST_BUTTON_ADD = "CONST_BUTTON_ADD";
140
+
141
+ /**
142
+ * 编辑按钮
143
+ */
144
+ export const CONST_BUTTON_EDIT = "CONST_BUTTON_EDIT";
145
+
146
+ /**
147
+ * 保存按钮
148
+ */
149
+ export const CONST_BUTTON_SAVE = "CONST_BUTTON_SAVE";
150
+
151
+ /**
152
+ * 删除按钮
153
+ */
154
+ export const CONST_BUTTON_DEL = "CONST_BUTTON_DEL";
155
+
156
+ /**
157
+ * 作废按钮
158
+ */
159
+ export const CONST_BUTTON_INVALID = "CONST_BUTTON_INVALID";
160
+
161
+ /**
162
+ * 关闭按钮
163
+ */
164
+ export const CONST_BUTTON_CLOSE = "CONST_BUTTON_CLOSE";
165
+
166
+ /**
167
+ * 提交按钮
168
+ */
169
+ export const CONST_BUTTON_SUBMIT = "CONST_BUTTON_SUBMIT";
170
+
171
+ /**
172
+ * 明细按钮
173
+ */
174
+ export const CONST_BUTTON_DETAIL = "CONST_BUTTON_DETAIL";
175
+
176
+ /**
177
+ * 查询关联单据
178
+ */
179
+ export const CONST_BUTTON_DETAIL_RELATION = "CONST_BUTTON_DETAIL_RELATION";
180
+
181
+ /**
182
+ * 导出附件
183
+ */
184
+ export const CONST_BUTTON_PATH = "CONST_BUTTON_PATH";
185
+
186
+ /**
187
+ * 详情按钮待审核
188
+ */
189
+ export const CONST_BUTTON_INFLOW = "CONST_BUTTON_INFLOW";
190
+
191
+ /**
192
+ * 审核按钮
193
+ */
194
+ export const CONST_BUTTON_AUDIT = "CONST_BUTTON_AUDIT";
195
+
196
+ /**
197
+ *退回按钮
198
+ */
199
+ export const CONST_BUTTON_BACK = "CONST_BUTTON_BACK";
200
+
201
+ /**
202
+ * 撤消审核按钮
203
+ */
204
+ export const CONST_BUTTON_UNAUDIT = "CONST_BUTTON_UNAUDIT";
205
+
206
+ /**
207
+ * 撤消送审按钮
208
+ */
209
+ export const CONST_BUTTON_UNSUBMIT = "CONST_BUTTON_UNSUBMIT";
210
+
211
+ /**
212
+ * 打印按钮
213
+ */
214
+ export const CONST_BUTTON_PRINT = "CONST_BUTTON_PRINT";
215
+
216
+ /**
217
+ * 导出按钮
218
+ */
219
+ export const CONST_BUTTON_EXPORT = "CONST_BUTTON_EXPORT";
220
+
221
+ /**
222
+ * 查看流程按钮
223
+ */
224
+ export const CONST_BUTTON_FLOW = "CONST_BUTTON_FLOW";
225
+
226
+ /**
227
+ * 刷新按钮
228
+ */
229
+ export const CONST_BUTTON_REFRESH = "CONST_BUTTON_REFRESH";
230
+
231
+ export const CONST_BUTTON_UNDO_AUDIT = "CONST_BUTTON_UNDO_AUDIT";
232
+
233
+ export const CONST_BUTTON_UNDO_RETURN = "CONST_BUTTON_UNDO_RETURN";
234
+
235
+ export type ButtonType =
236
+ | typeof CONST_BUTTON_UNDO_AUDIT
237
+ | typeof CONST_BUTTON_UNDO_RETURN
238
+ | typeof CONST_BUTTON_EXPORT
239
+ | typeof CONST_BUTTON_ADD
240
+ | typeof CONST_BUTTON_EDIT
241
+ | typeof CONST_BUTTON_SAVE
242
+ | typeof CONST_BUTTON_DEL
243
+ | typeof CONST_BUTTON_INVALID
244
+ | typeof CONST_BUTTON_SUBMIT
245
+ | typeof CONST_BUTTON_DETAIL
246
+ | typeof CONST_BUTTON_AUDIT
247
+ | typeof CONST_BUTTON_BACK
248
+ | typeof CONST_BUTTON_UNAUDIT
249
+ | typeof CONST_BUTTON_PRINT
250
+ | typeof CONST_BUTTON_FLOW
251
+ | typeof CONST_BUTTON_REFRESH
252
+ | typeof CONST_BUTTON_UNSUBMIT
253
+ | typeof CONST_BUTTON_CLOSE
254
+ | typeof CONST_BUTTON_INFLOW
255
+ | typeof CONST_BUTTON_DETAIL_RELATION
256
+ | typeof CONST_BUTTON_PATH;
257
+
258
+ export const CONST_SXGL_MENU_CCSP = "CONST_SXGL_MENU_CCSP";
259
+ export const CONST_SXGL_MENU_GWJD = "CONST_SXGL_MENU_GWJD";
260
+ export const CONST_SXGL_MENU_JBHY = "CONST_SXGL_MENU_JBHY";
261
+ export const CONST_SXGL_MENU_JBPX = "CONST_SXGL_MENU_JBPX";
262
+ export const CONST_SXGL_MENU_CJPX = "CONST_SXGL_MENU_CJPX";
263
+ export const CONST_SXGL_MENU_QTSX = "CONST_SXGL_MENU_QTSX";
264
+ export const CONST_SXGL_MENU_JKD = "CONST_SXGL_MENU_JKD";
265
+ export const CONST_ZCGL_MENU_CCSP = "CONST_ZCGL_MENU_CCSP";
266
+ export const CONST_ZCGL_MENU_GWJD = "CONST_ZCGL_MENU_GWJD";
267
+ export const CONST_ZCGL_MENU_JBHY = "CONST_ZCGL_MENU_JBHY";
268
+ export const CONST_ZCGL_MENU_JBPX = "CONST_ZCGL_MENU_JBPX";
269
+ export const CONST_ZCGL_MENU_CJPX = "CONST_ZCGL_MENU_CJPX";
270
+ export const CONST_ZCGL_MENU_QTSX = "CONST_ZCGL_MENU_QTSX";
271
+ export const CONST_ZCGL_MENU_LWF = "CONST_ZCGL_MENU_LWF";
272
+ export const CONST_ZCGL_MENU_YEBJF = "CONST_ZCGL_MENU_YEBJF";
273
+ export const CONST_ZCGL_MENU_JFZC = "CONST_ZCGL_MENU_JFZC";
274
+ export const CONST_ZCGL_MENU_WPLY = "CONST_ZCGL_MENU_WPLY";
275
+ export const CONST_ZCGL_MENU_SHSY = "CONST_ZCGL_MENU_SHSY";
276
+ export const CONST_ZCGL_MENU_JFSY = "CONST_ZCGL_MENU_JFSY";
277
+ export const CONST_ZCGL_MENU_HTQD = "CONST_ZCGL_MENU_HTQD";
278
+ export const CONST_ZCGL_MENU_ZXJF = "CONST_ZCGL_MENU_ZXJF";
279
+ export const CONST_HTGL_MENU_HTSQ = "CONST_HTGL_MENU_HTSQ";
280
+
281
+ export const CONST_MENU_APPLY = "CONST_MENU_APPLY";
282
+ export const CONST_MENU_AUDIT = "CONST_MENU_AUDIT";
283
+
284
+ export type MenuType =
285
+ | typeof CONST_SXGL_MENU_CCSP
286
+ | typeof CONST_SXGL_MENU_GWJD
287
+ | typeof CONST_SXGL_MENU_JBHY
288
+ | typeof CONST_SXGL_MENU_JBPX
289
+ | typeof CONST_SXGL_MENU_QTSX
290
+ | typeof CONST_SXGL_MENU_JKD
291
+ | typeof CONST_ZCGL_MENU_CCSP
292
+ | typeof CONST_ZCGL_MENU_GWJD
293
+ | typeof CONST_ZCGL_MENU_JBHY
294
+ | typeof CONST_ZCGL_MENU_JBPX
295
+ | typeof CONST_ZCGL_MENU_QTSX
296
+ | typeof CONST_MENU_APPLY
297
+ | typeof CONST_MENU_AUDIT
298
+ | typeof CONST_ZCGL_MENU_LWF
299
+ | typeof CONST_ZCGL_MENU_YEBJF
300
+ | typeof CONST_ZCGL_MENU_JFZC
301
+ | typeof CONST_ZCGL_MENU_WPLY
302
+ | typeof CONST_ZCGL_MENU_SHSY
303
+ | typeof CONST_ZCGL_MENU_JFSY
304
+ | typeof CONST_ZCGL_MENU_HTQD
305
+ | typeof CONST_ZCGL_MENU_CJPX
306
+ | typeof CONST_ZCGL_MENU_ZXJF
307
+ | typeof CONST_MODULE_HTGL_HTSQ
308
+ | typeof CONST_MODULE_HTGL_HTSQ;
309
+
310
+ /**
311
+ * 驾驶舱
312
+ */
313
+ export const CONST_MODULE_NEW_WINDOW = "CONST_MODULE_NEW_WINDOW";
314
+
315
+ /**
316
+ * 未支付
317
+ */
318
+ export const CONST_DONEWLZF_PAY_WAIT = 0;
319
+
320
+ /**
321
+ * 已支付
322
+ */
323
+ export const CONST_DONEWLZF_PAY_DONE = 1;
324
+
325
+ export type DoneWlzfType = typeof CONST_DONEWLZF_PAY_DONE | typeof CONST_DONEWLZF_PAY_WAIT;
326
+
327
+ /**
328
+ * =================================封存状态======================
329
+ */
330
+ export const CONST_CURRENT_YEAR_UNENDED = 0; //未封存
331
+ export const CONST_CURRENT_YEAR_ENDED = 1; //已封存
332
+ export type EndedType = typeof CONST_CURRENT_YEAR_UNENDED | typeof CONST_CURRENT_YEAR_ENDED;
333
+
334
+ /**
335
+ * =================================签订状态======================
336
+ */
337
+ export const CONST_YZHT_NOMAKE = "CONST_YZHT_NOMAKE"; //未签订
338
+ export const CONST_YZHT_MAKE = "CONST_YZHT_MAKE"; //已签订
339
+ export type YzhtSIGNType = typeof CONST_YZHT_MAKE | typeof CONST_YZHT_NOMAKE;
340
+ /**
341
+ * =================================归档状态======================
342
+ */
343
+ export const CONST_YZHT_NOGD = "CONST_YZHT_NOGD"; //未归档
344
+ export const CONST_YZHT_GD = "CONST_YZHT_GD"; //已归档
345
+ export type YzhtGdType = typeof CONST_YZHT_GD | typeof CONST_YZHT_NOGD;
346
+ /**
347
+ * =================================验收状态======================
348
+ */
349
+ export const CONST_YZHT_NOYS = "CONST_YZHT_NOYS"; //未归档
350
+ export const CONST_YZHT_YS = "CONST_YZHT_YS"; //已归档
351
+ export type YzhtYsType = typeof CONST_YZHT_YS | typeof CONST_YZHT_NOYS;
352
+
353
+ /**
354
+ * =================================确认状态======================
355
+ */
356
+ /**
357
+ * 已确认
358
+ */
359
+ export const CONST_STATUS_CONFIRM = "CONST_STATUS_CONFIRM";
360
+ /**
361
+ * 未确认
362
+ */
363
+ export const CONST_STATUS_NOCONFIRM = "CONST_STATUS_NOCONFIRM";
364
+ /**
365
+ * 已核销
366
+ */
367
+ export const CONST_STATUS_WRITEOFF = "CONST_STATUS_WRITEOFF";
368
+ export type ConfirmType = typeof CONST_STATUS_CONFIRM | typeof CONST_STATUS_NOCONFIRM | typeof CONST_STATUS_WRITEOFF;
369
+
370
+ /**
371
+ * =================================归集状态======================
372
+ */
373
+ /**
374
+ * 待归集
375
+ */
376
+ export const CONST_STATUS_NOCREATE = "CONST_STATUS_NOCREATE";
377
+
378
+ export type CreateType = typeof CONST_TABS_TODO | typeof CONST_TABS_PROC | typeof CONST_STATUS_NOCREATE;
379
+
380
+ /**
381
+ * =================================归集状态======================
382
+ */
383
+ /**
384
+ * 保证金管理中已保存状态
385
+ */
386
+ export const CONST_BZJGL_SAVE = 1;
387
+
388
+ /**
389
+ * 保证金管理中已提交状态
390
+ */
391
+ export const CONST_BZJGL_COMMIT = 2;
392
+ export type BZJGLType = typeof CONST_BZJGL_SAVE | typeof CONST_BZJGL_COMMIT;
@@ -1 +1,2 @@
1
1
  export const LOGIN_USER: string = "LOGIN_USER";
2
+ export const USER_SESSION_INFO: string = "USER_SESSION_INFO";
@@ -16,5 +16,7 @@ import * as Type from "./const_type";
16
16
  import * as User from "./const_user";
17
17
  import * as Yiha from "./const_yiha";
18
18
  import * as Zbzd from "./const_zbzd";
19
+ import * as Align from "./const_align";
20
+ import * as Stat from "./const_stat";
19
21
 
20
- export { Audit, Card, Clas, Cnfg, DataFrom, Elem, Flow, GamsMode, Myoa, Part, TakeType, Todo, Travel, TypeName, Type, User, Yiha, Zbzd };
22
+ export { Audit, Card, Clas, Cnfg, DataFrom, Elem, Flow, GamsMode, Myoa, Part, TakeType, Todo, Travel, TypeName, Type, User, Yiha, Zbzd, Align, Stat };
@@ -1,7 +0,0 @@
1
- export interface IYzbzItemResponse {
2
-
3
- }
4
-
5
- export class TYzbzItemResponse implements IYzbzItemResponse {
6
-
7
- }
@@ -1,77 +0,0 @@
1
- import type { IUnitResponse } from "../core/IUnitResponse";
2
-
3
- export interface IYzpzCnfgResponse {
4
- whoBuild: number;
5
- userIndx: number;
6
- sourceND: number;
7
- sourceID: number;
8
- parentID: number;
9
- hashCode: number;
10
- dataLevl: number;
11
- dataFrom: number;
12
- kjndKJQJ: number;
13
- dataStat: number;
14
- dataOrdr: number;
15
- dataDate: number;
16
- dataTime: number;
17
- dataHide: number;
18
- dataGUID: string;
19
- mastName: string;
20
- mastGUID: string;
21
- createBy: string;
22
- createAt: number;
23
- updateBy: string;
24
- updateAt: number;
25
- deleteBy: string;
26
- deleteAt: number;
27
- queuesBy: number;
28
- entityID: string;
29
- cnfgCode: string;
30
- cnfgName: string;
31
- cnfgMemo: string;
32
- unitText: string;
33
- onStatus: number;
34
- allowAdj: number;
35
- startAdj: number;
36
- statusMC: string;
37
-
38
- listUnit: IUnitResponse[];
39
- }
40
-
41
- export class TYzpzCnfgResponse implements IYzpzCnfgResponse {
42
- whoBuild: number = 0;
43
- userIndx: number = 0;
44
- sourceND: number = 0;
45
- sourceID: number = 0;
46
- parentID: number = 0;
47
- hashCode: number = 0;
48
- dataLevl: number = 0;
49
- dataFrom: number = 0;
50
- kjndKJQJ: number = 0;
51
- dataStat: number = 0;
52
- dataOrdr: number = 0;
53
- dataDate: number = 0;
54
- dataTime: number = 0;
55
- dataHide: number = 0;
56
- dataGUID: string = "";
57
- mastName: string = "";
58
- mastGUID: string = "";
59
- createBy: string = "";
60
- createAt: number = 0;
61
- updateBy: string = "";
62
- updateAt: number = 0;
63
- deleteBy: string = "";
64
- deleteAt: number = 0;
65
- queuesBy: number = 0;
66
- entityID: string = "";
67
- cnfgCode: string = "";
68
- cnfgName: string = "";
69
- cnfgMemo: string = "";
70
- unitText: string = "";
71
- onStatus: number = 0;
72
- allowAdj: number = 0;
73
- startAdj: number = 0;
74
- statusMC: string = "";
75
-
76
- listUnit: IUnitResponse[] = [];
77
- }
@@ -1,111 +0,0 @@
1
- import type { IDeptResponse } from "../core/IDeptResponse";
2
-
3
- export interface IYzpzK8kmResponse {
4
- whoBuild: number;
5
- userIndx: number;
6
- sourceND: number;
7
- sourceID: number;
8
- k8kmKmid: number;
9
- k0kmKmid: number;
10
- parentID: number;
11
- parentMC: string;
12
- hashCode: number;
13
- dataLevl: number;
14
- dataFrom: number;
15
- kjndKJQJ: number;
16
- dataStat: number;
17
- dataOrdr: number;
18
- dataDate: number;
19
- dataTime: number;
20
- dataHide: number;
21
- dataGUID: string;
22
- mastName: string;
23
- mastGUID: string;
24
- createBy: string;
25
- createAt: number;
26
- updateBy: string;
27
- updateAt: number;
28
- deleteBy: string;
29
- deleteAt: number;
30
- queuesBy: number;
31
- entityID: string;
32
- typeSize: number;
33
- isLasted: number;
34
- typeText: string;
35
- k8kmKmbm: string;
36
- k8kmKmmc: string;
37
- k8kmJldw: string;
38
- onNumber: number;
39
- onBubble: number;
40
- k8kmKmdq: number;
41
- k8kmKmlx: number;
42
- k0kmText: string;
43
- deptSize: number;
44
- deptText: string;
45
- itemSize: number;
46
- itemText: string;
47
- k0kmKmmc: string;
48
- isPublic: number;
49
-
50
- listDept: IDeptResponse[];
51
- listItem: any[];
52
- listK0KM: any[];
53
- listType: any[];
54
-
55
- children: IYzpzK8kmResponse[];
56
- }
57
-
58
- export class TYzpzK8kmResponse implements IYzpzK8kmResponse {
59
- whoBuild: number = 0;
60
- userIndx: number = 0;
61
- sourceND: number = 0;
62
- sourceID: number = 0;
63
- k8kmKmid: number = 0;
64
- k0kmKmid: number = 0;
65
- parentID: number = 0;
66
- hashCode: number = 0;
67
- dataLevl: number = 0;
68
- dataFrom: number = 0;
69
- kjndKJQJ: number = 0;
70
- dataStat: number = 0;
71
- dataOrdr: number = 0;
72
- dataDate: number = 0;
73
- dataTime: number = 0;
74
- dataHide: number = 0;
75
- dataGUID: string = "";
76
- mastName: string = "";
77
- mastGUID: string = "";
78
- createBy: string = "";
79
- createAt: number = 0;
80
- updateBy: string = "";
81
- updateAt: number = 0;
82
- deleteBy: string = "";
83
- deleteAt: number = 0;
84
- queuesBy: number = 0;
85
- entityID: string = "";
86
- typeSize: number = 0;
87
- isLasted: number = 0;
88
- typeText: string = "";
89
- k8kmKmbm: string = "";
90
- k8kmKmmc: string = "";
91
- k8kmJldw: string = "";
92
- onNumber: number = 0;
93
- onBubble: number = 0;
94
- k8kmKmdq: number = 0;
95
- k8kmKmlx: number = 0;
96
- k0kmText: string = "";
97
- deptSize: number = 0;
98
- deptText: string = "";
99
- itemSize: number = 0;
100
- itemText: string = "";
101
- k0kmKmmc: string = "";
102
- isPublic: number = 0;
103
- parentMC: string = "";
104
-
105
- listDept: IDeptResponse[] = [];
106
- listItem: any[] = [];
107
- listK0KM: any[] = [];
108
- listType: any[] = [];
109
-
110
- children: IYzpzK8kmResponse[] = [];
111
- }
package/src/yzpz/index.ts DELETED
@@ -1,13 +0,0 @@
1
- import { IYzpzCnfgResponse, TYzpzCnfgResponse } from "./IYzpzCnfgResponse";
2
- import { IYzpzK8kmResponse, TYzpzK8kmResponse } from "./IYzpzK8kmResponse";
3
- import { IYzbzItemResponse, TYzbzItemResponse } from "./IYzbzItemResponse";
4
-
5
- export {
6
- IYzpzCnfgResponse,
7
- IYzpzK8kmResponse,
8
- IYzbzItemResponse,
9
-
10
- TYzpzCnfgResponse,
11
- TYzpzK8kmResponse,
12
- TYzbzItemResponse
13
- };