@ningboyz/types 1.0.6 → 1.0.8
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 +27 -18
- package/package.json +1 -2
- package/src/app/ITab.ts +8 -0
- package/src/app/IUserData.ts +5 -0
- package/src/app/index.ts +3 -5
- package/src/base/IBaseResponse.ts +4 -2
- package/src/card/ICardMainResponse.ts +368 -0
- package/src/card/IGblbResponse.ts +74 -0
- package/src/card/IZcbdResponse.ts +106 -0
- package/src/card/IZccfResponse.ts +87 -0
- package/src/card/IZcczResponse.ts +83 -0
- package/src/card/IZcdbResponse.ts +83 -0
- package/src/card/index.ts +21 -0
- package/src/conf/ICnfgMainResponse.ts +83 -0
- package/src/conf/IConfig.ts +6 -0
- package/src/conf/index.ts +3 -0
- package/src/const/const_align.ts +0 -1
- package/src/const/const_stat.ts +1 -7
- package/src/const/const_type_name.ts +1 -0
- package/src/core/IDeptResponse.ts +4 -0
- package/src/core/IDictResponse.ts +14 -0
- package/src/core/IDictResponseDictPara.ts +10 -2
- package/src/core/ILaidResponse.ts +5 -0
- package/src/core/ITypeResponse.ts +12 -0
- package/src/core/IUnitResponse.ts +3 -0
- package/src/core/IUnitResponseElemPara.ts +2 -6
- package/src/core/IUserResponse.ts +2 -2
- package/src/core/index.ts +17 -17
- package/src/enums/btnMode.ts +19 -0
- package/src/enums/cardMode.ts +27 -0
- package/src/enums/index.ts +3 -1
- package/src/flow/IFlowDutyNodeParaConv.ts +1 -1
- package/src/flow/IFlowTypeResponse.ts +2 -6
- package/src/flow/index.ts +5 -6
- package/src/gams/index.ts +1 -5
- package/src/gzjg/IGzjgGzlmResponse.ts +7 -3
- package/src/gzjg/index.ts +5 -6
- package/src/load/IYqdwResponse.ts +65 -0
- package/src/load/IYqkbResponse.ts +65 -0
- package/src/load/IYqkmResponse.ts +49 -0
- package/src/load/index.ts +5 -0
- package/src/micro/appData.ts +29 -0
- package/src/micro/appName.ts +6 -0
- package/src/micro/appTab.ts +15 -0
- package/src/micro/index.ts +6 -0
- package/src/pzpt/IPzptCnfgResponse.ts +6 -0
- package/src/pzpt/IPzptK8kmResponse.ts +7 -4
- package/src/pzpt/IPzptTypeResponse.ts +4 -0
- package/src/pzpt/index.ts +7 -8
- package/src/store/index.ts +3 -1
- package/src/store/tabsState.ts +1 -1
- package/src/store/viewState.ts +5 -1
- package/src/tabl/index.ts +1 -9
- package/src/wldy/IWldyDataResponse.ts +6 -0
- package/src/wldy/IWldyPageParaResponse.ts +42 -0
- package/src/wldy/IWldyPageResponse.ts +22 -0
- package/src/wldy/index.ts +10 -5
- package/src/wlzf/index.ts +1 -5
- package/src/wtui/IViewCtrlResponse.ts +3 -2
- package/src/wtui/index.ts +1 -11
package/index.ts
CHANGED
|
@@ -1,37 +1,46 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as TApp from "./src/app";
|
|
2
2
|
import { IBaseResponse } from "./src/base/IBaseResponse";
|
|
3
|
-
import
|
|
4
|
-
import
|
|
3
|
+
import * as TCard from "./src/card";
|
|
4
|
+
import { IAboutConfig, IBaseConfig, IConfig, IPathConfig } from "./src/conf/IConfig";
|
|
5
5
|
import * as Const from "./src/const";
|
|
6
6
|
import * as TCore from "./src/core";
|
|
7
|
+
import * as Enums from "./src/enums";
|
|
7
8
|
import * as TFlow from "./src/flow";
|
|
8
9
|
import * as TGams from "./src/gams";
|
|
9
10
|
import * as TGzjg from "./src/gzjg";
|
|
10
11
|
import * as TPzpt from "./src/pzpt";
|
|
12
|
+
import { IResponse } from "./src/response/IResponse";
|
|
13
|
+
import * as TStore from "./src/store";
|
|
11
14
|
import * as TTabl from "./src/tabl";
|
|
15
|
+
import * as TWldy from "./src/wldy";
|
|
12
16
|
import * as TWlzf from "./src/wlzf";
|
|
13
17
|
import * as TWtui from "./src/wtui";
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
18
|
+
import * as TCnfg from "./src/conf";
|
|
19
|
+
import * as Load from "./src/load";
|
|
20
|
+
import * as Micro from "./src/micro";
|
|
17
21
|
|
|
18
|
-
export {
|
|
19
|
-
|
|
20
|
-
|
|
22
|
+
export {
|
|
23
|
+
Const,
|
|
24
|
+
Enums,
|
|
25
|
+
type IAboutConfig,
|
|
26
|
+
type IBaseConfig,
|
|
27
|
+
type IBaseResponse,
|
|
21
28
|
type IConfig,
|
|
22
|
-
type
|
|
23
|
-
type IBaseConfig,
|
|
29
|
+
type IPathConfig,
|
|
24
30
|
type IResponse,
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
31
|
+
Load,
|
|
32
|
+
Micro,
|
|
33
|
+
TApp,
|
|
34
|
+
TCard,
|
|
35
|
+
TCnfg,
|
|
36
|
+
TCore,
|
|
37
|
+
TFlow,
|
|
29
38
|
TGams,
|
|
30
39
|
TGzjg,
|
|
31
40
|
TPzpt,
|
|
41
|
+
TStore,
|
|
32
42
|
TTabl,
|
|
33
|
-
TWlzf,
|
|
34
|
-
TWtui,
|
|
35
43
|
TWldy,
|
|
36
|
-
|
|
44
|
+
TWlzf,
|
|
45
|
+
TWtui
|
|
37
46
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ningboyz/types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "宁波甬政类型库",
|
|
6
6
|
"author": "nbyt-syq",
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"registry": "https://registry.npmjs.org/"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@aximario/json-tree": "2.2.4"
|
|
19
18
|
},
|
|
20
19
|
"devDependencies": {
|
|
21
20
|
}
|
package/src/app/ITab.ts
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
|
+
import { Micro } from "../..";
|
|
2
|
+
|
|
1
3
|
export interface ITabQuery {
|
|
2
4
|
sourceId: number;
|
|
3
5
|
sourceNd: number;
|
|
6
|
+
bizIndex: number;
|
|
4
7
|
}
|
|
5
8
|
|
|
6
9
|
export class TTabQuery implements ITabQuery {
|
|
7
10
|
sourceId: number = 0;
|
|
8
11
|
sourceNd: number = 0;
|
|
12
|
+
bizIndex: number = 0;
|
|
9
13
|
}
|
|
10
14
|
|
|
11
15
|
export interface ITab {
|
|
12
16
|
id: string;
|
|
17
|
+
name: string;
|
|
13
18
|
title: string;
|
|
14
19
|
path: string;
|
|
15
20
|
key: string;
|
|
@@ -17,15 +22,18 @@ export interface ITab {
|
|
|
17
22
|
closable: boolean;
|
|
18
23
|
refresh: boolean;
|
|
19
24
|
query: ITabQuery;
|
|
25
|
+
microAppInfo?: Micro.IAppTab;
|
|
20
26
|
}
|
|
21
27
|
|
|
22
28
|
export class TTab implements ITab {
|
|
23
29
|
id: string = "";
|
|
24
30
|
key: string = "";
|
|
31
|
+
name: string = "";
|
|
25
32
|
title: string = "";
|
|
26
33
|
path: string = "";
|
|
27
34
|
keepAlive: boolean = false;
|
|
28
35
|
closable: boolean = false;
|
|
29
36
|
refresh: boolean = false;
|
|
30
37
|
query: ITabQuery = new TTabQuery();
|
|
38
|
+
micorAppInfo?: Micro.IAppTab = new Micro.TAppTab();
|
|
31
39
|
}
|
package/src/app/index.ts
CHANGED
|
@@ -8,7 +8,8 @@ export interface IBaseResponse<T> {
|
|
|
8
8
|
disabled: boolean;
|
|
9
9
|
readOnly: boolean;
|
|
10
10
|
hasChild: boolean;
|
|
11
|
-
children: T
|
|
11
|
+
children: T[];
|
|
12
|
+
isChecked: boolean;
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
export class TBaseResponse<T> implements IBaseResponse<T> {
|
|
@@ -21,5 +22,6 @@ export class TBaseResponse<T> implements IBaseResponse<T> {
|
|
|
21
22
|
disabled: boolean = false;
|
|
22
23
|
readOnly: boolean = false;
|
|
23
24
|
hasChild: boolean = false;
|
|
24
|
-
children: T
|
|
25
|
+
children: T[] = [];
|
|
26
|
+
isChecked: boolean = false;
|
|
25
27
|
}
|
|
@@ -0,0 +1,368 @@
|
|
|
1
|
+
import { IDeptResponse, ILaidResponse, IPathResponse, IUnitResponse } from "../core";
|
|
2
|
+
|
|
3
|
+
export interface ICardMainResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
/** 卡片索引 */
|
|
6
|
+
cardIndx: number;
|
|
7
|
+
cardExid: number;
|
|
8
|
+
parentID: number;
|
|
9
|
+
hashCode: number;
|
|
10
|
+
dataLevl: number;
|
|
11
|
+
dataStat: number;
|
|
12
|
+
dataOrdr: number;
|
|
13
|
+
dataDate: number;
|
|
14
|
+
dataTime: number;
|
|
15
|
+
dataHide: number;
|
|
16
|
+
dataFrom: number;
|
|
17
|
+
dataType: number;
|
|
18
|
+
kjndKJQJ: number;
|
|
19
|
+
dataGUID: string;
|
|
20
|
+
mastName: string;
|
|
21
|
+
mastGUID: string;
|
|
22
|
+
createBy: string;
|
|
23
|
+
createAt: number;
|
|
24
|
+
updateBy: string;
|
|
25
|
+
updateAt: number;
|
|
26
|
+
deleteBy: string;
|
|
27
|
+
deleteAt: number;
|
|
28
|
+
queuesBy: number;
|
|
29
|
+
sourceND: number;
|
|
30
|
+
unitMain: number;
|
|
31
|
+
deptMain: number;
|
|
32
|
+
cardStat: number;
|
|
33
|
+
flowUndo: number;
|
|
34
|
+
flowText: string;
|
|
35
|
+
menuUUID: string;
|
|
36
|
+
coverURL: string;
|
|
37
|
+
cardKJND: number;
|
|
38
|
+
cardKJQJ: number;
|
|
39
|
+
/** 入账日期 */
|
|
40
|
+
cardRzrq: number;
|
|
41
|
+
cardGmrq: number;
|
|
42
|
+
cardYwbz: number;
|
|
43
|
+
/** 资产类型 */
|
|
44
|
+
cardType: number;
|
|
45
|
+
/** 使用部门 */
|
|
46
|
+
cardDept: number;
|
|
47
|
+
/** 存放地点 */
|
|
48
|
+
cardLaid: number;
|
|
49
|
+
/** 资产用途 */
|
|
50
|
+
cardUses: number;
|
|
51
|
+
/** 计量单位 */
|
|
52
|
+
cardJldw: number;
|
|
53
|
+
/** 国标类别 */
|
|
54
|
+
cardGblb: number;
|
|
55
|
+
/** 资产状态 */
|
|
56
|
+
cardZczt: number;
|
|
57
|
+
/** 资产数量 */
|
|
58
|
+
cardSize: number;
|
|
59
|
+
/** 资产单价 */
|
|
60
|
+
cardZcdj: number;
|
|
61
|
+
/** 资产成本 */
|
|
62
|
+
cardCost: number;
|
|
63
|
+
/** 资产原值 */
|
|
64
|
+
cardZcyz: number;
|
|
65
|
+
/** 累计折旧 */
|
|
66
|
+
cardLjzj: number;
|
|
67
|
+
/** 资产净值 */
|
|
68
|
+
cardZcjz: number;
|
|
69
|
+
/** 初始折旧 */
|
|
70
|
+
cardCszj: number;
|
|
71
|
+
/** 资产编码 */
|
|
72
|
+
cardCode: string;
|
|
73
|
+
/** 资产名称 */
|
|
74
|
+
cardName: string;
|
|
75
|
+
/** 规格型号 */
|
|
76
|
+
cardGgxh: string;
|
|
77
|
+
/** 出厂编号 */
|
|
78
|
+
cardCcbh: string;
|
|
79
|
+
/** 生产厂商 */
|
|
80
|
+
cardSccs: string;
|
|
81
|
+
/** 资产条码 */
|
|
82
|
+
cardZctm: string;
|
|
83
|
+
/** 资产备注 */
|
|
84
|
+
cardMemo: string;
|
|
85
|
+
/** 有多少层(楼宇租赁) */
|
|
86
|
+
floorCnt: number;
|
|
87
|
+
/** 汽车类型 */
|
|
88
|
+
autoType: number;
|
|
89
|
+
/** 汽车车牌 */
|
|
90
|
+
autoCpbh: string;
|
|
91
|
+
/** 保险日期 */
|
|
92
|
+
autoBxrq: number;
|
|
93
|
+
/** 年检日期 */
|
|
94
|
+
autoNjrq: number;
|
|
95
|
+
/** 报废日期 */
|
|
96
|
+
autoBfrq: number;
|
|
97
|
+
/** 加油卡号 */
|
|
98
|
+
autoJykh: string;
|
|
99
|
+
/** 单位名称 */
|
|
100
|
+
cardUnitText: string;
|
|
101
|
+
/** 部门名称 */
|
|
102
|
+
cardDeptText: string;
|
|
103
|
+
/** 资产类型名称 */
|
|
104
|
+
cardTypeText: string;
|
|
105
|
+
/** 资产用途名称 */
|
|
106
|
+
cardUsesText: string;
|
|
107
|
+
/** 计量单位名称 */
|
|
108
|
+
cardJldwText: string;
|
|
109
|
+
/** 存放地点名称 */
|
|
110
|
+
cardLaidText: string;
|
|
111
|
+
/** 使用人名称 */
|
|
112
|
+
cardUserText: string;
|
|
113
|
+
/** 使用次数 */
|
|
114
|
+
knockCnt: number;
|
|
115
|
+
/** 司乘人数 */
|
|
116
|
+
userSize: number;
|
|
117
|
+
/** 车架编号 */
|
|
118
|
+
autoClno: string;
|
|
119
|
+
/** 引擎编号 */
|
|
120
|
+
autoYqno: string;
|
|
121
|
+
/** 对应钥匙 */
|
|
122
|
+
matchKey: string;
|
|
123
|
+
/** 车辆里程 */
|
|
124
|
+
autoCllc: number;
|
|
125
|
+
/** 车辆油耗 */
|
|
126
|
+
autoClyh: number;
|
|
127
|
+
/** 最新油耗登记日期 */
|
|
128
|
+
autoYhrq: number;
|
|
129
|
+
/** 最新里程登记日期 */
|
|
130
|
+
autoLcrq: number;
|
|
131
|
+
/** 加油油号 */
|
|
132
|
+
autoJyyh: number;
|
|
133
|
+
/** 所属单位 */
|
|
134
|
+
unitDict: number;
|
|
135
|
+
/** 车辆性质 */
|
|
136
|
+
autoClxz: number;
|
|
137
|
+
/** 投保单位 */
|
|
138
|
+
autoTbdw: number;
|
|
139
|
+
/** 驾驶模式 */
|
|
140
|
+
autoMode: number;
|
|
141
|
+
/** 座位数量 */
|
|
142
|
+
autoSeat: number;
|
|
143
|
+
/** 车辆排量 */
|
|
144
|
+
autoClpl: number;
|
|
145
|
+
/** 动力类型 */
|
|
146
|
+
autoCldl: number;
|
|
147
|
+
/** 取得方式 */
|
|
148
|
+
get4From: number;
|
|
149
|
+
/** 车辆排量名称 */
|
|
150
|
+
autoClplText: string;
|
|
151
|
+
autoCode: string;
|
|
152
|
+
/** 同步状态 */
|
|
153
|
+
syncStat: number;
|
|
154
|
+
/** 卡片来源 */
|
|
155
|
+
cardFrom: number;
|
|
156
|
+
/** 物品品牌 */
|
|
157
|
+
cardWppp: string;
|
|
158
|
+
/** 物品状态 */
|
|
159
|
+
cardWpzt: string;
|
|
160
|
+
/** 是否主机 */
|
|
161
|
+
cardSfzj: string;
|
|
162
|
+
/** 设备序列 */
|
|
163
|
+
cardZcxl: string;
|
|
164
|
+
/** 录入时间 */
|
|
165
|
+
cardTime: number;
|
|
166
|
+
|
|
167
|
+
listUnit: IUnitResponse[];
|
|
168
|
+
listDept: IDeptResponse[];
|
|
169
|
+
listLaid: ILaidResponse[];
|
|
170
|
+
listPath: IPathResponse[];
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export class TCardMainResponse implements ICardMainResponse {
|
|
174
|
+
whoBuild: number = 0;
|
|
175
|
+
cardIndx: number = 0;
|
|
176
|
+
cardExid: number = 0;
|
|
177
|
+
parentID: number = 0;
|
|
178
|
+
hashCode: number = 0;
|
|
179
|
+
dataLevl: number = 0;
|
|
180
|
+
dataStat: number = 0;
|
|
181
|
+
dataOrdr: number = 0;
|
|
182
|
+
dataDate: number = 0;
|
|
183
|
+
dataTime: number = 0;
|
|
184
|
+
dataHide: number = 0;
|
|
185
|
+
dataFrom: number = 0;
|
|
186
|
+
dataType: number = 0;
|
|
187
|
+
kjndKJQJ: number = 0;
|
|
188
|
+
dataGUID: string = "";
|
|
189
|
+
mastName: string = "";
|
|
190
|
+
mastGUID: string = "";
|
|
191
|
+
createBy: string = "";
|
|
192
|
+
createAt: number = 0;
|
|
193
|
+
updateBy: string = "";
|
|
194
|
+
updateAt: number = 0;
|
|
195
|
+
deleteBy: string = "";
|
|
196
|
+
deleteAt: number = 0;
|
|
197
|
+
queuesBy: number = 0;
|
|
198
|
+
sourceND: number = 0;
|
|
199
|
+
unitMain: number = 0;
|
|
200
|
+
deptMain: number = 0;
|
|
201
|
+
cardStat: number = 0;
|
|
202
|
+
flowUndo: number = 0;
|
|
203
|
+
flowText: string = "";
|
|
204
|
+
menuUUID: string = "";
|
|
205
|
+
coverURL: string = "";
|
|
206
|
+
cardKJND: number = 0;
|
|
207
|
+
cardKJQJ: number = 0;
|
|
208
|
+
cardRzrq: number = 0;
|
|
209
|
+
cardGmrq: number = 0;
|
|
210
|
+
cardYwbz: number = 0;
|
|
211
|
+
cardType: number = 0;
|
|
212
|
+
cardDept: number = 0;
|
|
213
|
+
cardLaid: number = 0;
|
|
214
|
+
cardUses: number = 0;
|
|
215
|
+
cardJldw: number = 0;
|
|
216
|
+
cardGblb: number = 0;
|
|
217
|
+
cardZczt: number = 0;
|
|
218
|
+
cardSize: number = 0;
|
|
219
|
+
cardZcdj: number = 0;
|
|
220
|
+
cardCost: number = 0;
|
|
221
|
+
cardZcyz: number = 0;
|
|
222
|
+
cardLjzj: number = 0;
|
|
223
|
+
cardZcjz: number = 0;
|
|
224
|
+
cardCszj: number = 0;
|
|
225
|
+
cardCode: string = "";
|
|
226
|
+
cardName: string = "";
|
|
227
|
+
cardGgxh: string = "";
|
|
228
|
+
cardCcbh: string = "";
|
|
229
|
+
cardSccs: string = "";
|
|
230
|
+
cardZctm: string = "";
|
|
231
|
+
cardMemo: string = "";
|
|
232
|
+
floorCnt: number = 0;
|
|
233
|
+
autoType: number = 0;
|
|
234
|
+
autoCpbh: string = "";
|
|
235
|
+
autoBxrq: number = 0;
|
|
236
|
+
autoNjrq: number = 0;
|
|
237
|
+
autoBfrq: number = 0;
|
|
238
|
+
autoJykh: string = "";
|
|
239
|
+
cardUnitText: string = "";
|
|
240
|
+
cardDeptText: string = "";
|
|
241
|
+
cardTypeText: string = "";
|
|
242
|
+
cardUsesText: string = "";
|
|
243
|
+
cardJldwText: string = "";
|
|
244
|
+
cardLaidText: string = "";
|
|
245
|
+
cardUserText: string = "";
|
|
246
|
+
knockCnt: number = 0;
|
|
247
|
+
userSize: number = 0;
|
|
248
|
+
autoClno: string = "";
|
|
249
|
+
autoYqno: string = "";
|
|
250
|
+
matchKey: string = "";
|
|
251
|
+
autoCllc: number = 0;
|
|
252
|
+
autoClyh: number = 0;
|
|
253
|
+
autoYhrq: number = 0;
|
|
254
|
+
autoLcrq: number = 0;
|
|
255
|
+
autoJyyh: number = 0;
|
|
256
|
+
unitDict: number = 0;
|
|
257
|
+
autoClxz: number = 0;
|
|
258
|
+
autoTbdw: number = 0;
|
|
259
|
+
autoMode: number = 0;
|
|
260
|
+
autoSeat: number = 0;
|
|
261
|
+
autoClpl: number = 0;
|
|
262
|
+
autoCldl: number = 0;
|
|
263
|
+
get4From: number = 0;
|
|
264
|
+
autoClplText: string = "";
|
|
265
|
+
autoCode: string = "";
|
|
266
|
+
syncStat: number = 0;
|
|
267
|
+
cardFrom: number = 0;
|
|
268
|
+
cardWppp: string = "";
|
|
269
|
+
cardWpzt: string = "";
|
|
270
|
+
cardSfzj: string = "";
|
|
271
|
+
cardZcxl: string = "";
|
|
272
|
+
cardTime: number = 0;
|
|
273
|
+
|
|
274
|
+
listUnit: IUnitResponse[] = [];
|
|
275
|
+
listDept: IDeptResponse[] = [];
|
|
276
|
+
listLaid: ILaidResponse[] = [];
|
|
277
|
+
listPath: IPathResponse[] = [];
|
|
278
|
+
constructor(card: any = {}) {
|
|
279
|
+
this.whoBuild = card.whoBuild ?? this.whoBuild;
|
|
280
|
+
this.cardIndx = card.cardIndx ?? this.cardIndx;
|
|
281
|
+
this.cardDept = card.cardDept ?? this.cardDept;
|
|
282
|
+
this.cardExid = card.cardExid ?? this.cardExid;
|
|
283
|
+
this.parentID = card.parentID ?? this.parentID;
|
|
284
|
+
this.hashCode = card.hashCode ?? this.hashCode;
|
|
285
|
+
this.dataLevl = card.dataLevl ?? this.dataLevl;
|
|
286
|
+
this.dataStat = card.dataStat ?? this.dataStat;
|
|
287
|
+
this.dataOrdr = card.dataOrdr ?? this.dataOrdr;
|
|
288
|
+
this.dataDate = card.dataDate ?? this.dataDate;
|
|
289
|
+
this.dataTime = card.dataTime ?? this.dataTime;
|
|
290
|
+
this.dataHide = card.dataHide ?? this.dataHide;
|
|
291
|
+
this.dataFrom = card.dataFrom ?? this.dataFrom;
|
|
292
|
+
this.dataType = card.dataType ?? this.dataType;
|
|
293
|
+
this.kjndKJQJ = card.kjndKJQJ ?? this.kjndKJQJ;
|
|
294
|
+
this.dataGUID = card.dataGUID ?? this.dataGUID;
|
|
295
|
+
this.mastName = card.mastName ?? this.mastName;
|
|
296
|
+
this.mastGUID = card.mastGUID ?? this.mastGUID;
|
|
297
|
+
this.createBy = card.createBy ?? this.createBy;
|
|
298
|
+
this.createAt = card.createAt ?? this.createAt;
|
|
299
|
+
this.updateBy = card.updateBy ?? this.updateBy;
|
|
300
|
+
this.updateAt = card.updateAt ?? this.updateAt;
|
|
301
|
+
this.deleteBy = card.deleteBy ?? this.deleteBy;
|
|
302
|
+
this.deleteAt = card.deleteAt ?? this.deleteAt;
|
|
303
|
+
this.queuesBy = card.queuesBy ?? this.queuesBy;
|
|
304
|
+
this.sourceND = card.sourceND ?? this.sourceND;
|
|
305
|
+
this.unitMain = card.unitMain ?? this.unitMain;
|
|
306
|
+
this.deptMain = card.deptMain ?? this.deptMain;
|
|
307
|
+
this.cardStat = card.cardStat ?? this.cardStat;
|
|
308
|
+
this.cardType = card.cardType ?? this.cardType;
|
|
309
|
+
this.cardJldw = card.cardJldw ?? this.cardJldw;
|
|
310
|
+
this.cardGblb = card.cardGblb ?? this.cardGblb;
|
|
311
|
+
this.cardZczt = card.cardZczt ?? this.cardZczt;
|
|
312
|
+
this.cardSize = card.cardSize ?? this.cardSize;
|
|
313
|
+
this.cardZcdj = card.cardZcdj ?? this.cardZcdj;
|
|
314
|
+
this.cardCost = card.cardCost ?? this.cardCost;
|
|
315
|
+
this.cardZcyz = card.cardZcyz ?? this.cardZcyz;
|
|
316
|
+
this.cardCszj = card.cardCszj ?? this.cardCszj;
|
|
317
|
+
this.cardCode = card.cardCode ?? this.cardCode;
|
|
318
|
+
this.cardName = card.cardName ?? this.cardName;
|
|
319
|
+
this.cardGgxh = card.cardGgxh ?? this.cardGgxh;
|
|
320
|
+
this.cardCcbh = card.cardCcbh ?? this.cardCcbh;
|
|
321
|
+
this.cardSccs = card.cardSccs ?? this.cardSccs;
|
|
322
|
+
this.cardZctm = card.cardZctm ?? this.cardZctm;
|
|
323
|
+
this.cardMemo = card.cardMemo ?? this.cardMemo;
|
|
324
|
+
this.floorCnt = card.floorCnt ?? this.floorCnt;
|
|
325
|
+
this.autoType = card.autoType ?? this.autoType;
|
|
326
|
+
this.autoCpbh = card.autoCpbh ?? this.autoCpbh;
|
|
327
|
+
this.autoBxrq = card.autoBxrq ?? this.autoBxrq;
|
|
328
|
+
this.autoNjrq = card.autoNjrq ?? this.autoNjrq;
|
|
329
|
+
this.autoBfrq = card.autoBfrq ?? this.autoBfrq;
|
|
330
|
+
this.autoJykh = card.autoJykh ?? this.autoJykh;
|
|
331
|
+
this.cardUnitText = card.cardUnitText ?? this.cardUnitText;
|
|
332
|
+
this.cardDeptText = card.cardDeptText ?? this.cardDeptText;
|
|
333
|
+
this.cardTypeText = card.cardTypeText ?? this.cardTypeText;
|
|
334
|
+
this.cardUsesText = card.cardUsesText ?? this.cardUsesText;
|
|
335
|
+
this.cardJldwText = card.cardJldwText ?? this.cardJldwText;
|
|
336
|
+
this.cardLaidText = card.cardLaidText ?? this.cardLaidText;
|
|
337
|
+
this.cardUserText = card.cardUserText ?? this.cardUserText;
|
|
338
|
+
this.knockCnt = card.knockCnt ?? this.knockCnt;
|
|
339
|
+
this.userSize = card.userSize ?? this.userSize;
|
|
340
|
+
this.autoClno = card.autoClno ?? this.autoClno;
|
|
341
|
+
this.autoYqno = card.autoYqno ?? this.autoYqno;
|
|
342
|
+
this.matchKey = card.matchKey ?? this.matchKey;
|
|
343
|
+
this.autoCllc = card.autoCllc ?? this.autoCllc;
|
|
344
|
+
this.autoClyh = card.autoClyh ?? this.autoClyh;
|
|
345
|
+
this.autoYhrq = card.autoYhrq ?? this.autoYhrq;
|
|
346
|
+
this.autoLcrq = card.autoLcrq ?? this.autoLcrq;
|
|
347
|
+
this.cardLaid = card.cardLaid ?? this.cardLaid;
|
|
348
|
+
this.cardUses = card.cardUses ?? this.cardUses;
|
|
349
|
+
this.autoJyyh = card.autoJyyh ?? this.autoJyyh;
|
|
350
|
+
this.unitDict = card.unitDict ?? this.unitDict;
|
|
351
|
+
this.autoClxz = card.autoClxz ?? this.autoClxz;
|
|
352
|
+
this.autoTbdw = card.autoTbdw ?? this.autoTbdw;
|
|
353
|
+
this.autoCode = card.autoCode ?? this.autoCode;
|
|
354
|
+
this.syncStat = card.syncStat ?? this.syncStat;
|
|
355
|
+
this.cardFrom = card.cardFrom ?? this.cardFrom;
|
|
356
|
+
this.cardWppp = card.cardWppp ?? this.cardWppp;
|
|
357
|
+
this.cardWpzt = card.cardWpzt ?? this.cardWpzt;
|
|
358
|
+
this.cardSfzj = card.cardSfzj ?? this.cardSfzj;
|
|
359
|
+
this.cardZcxl = card.cardZcxl ?? this.cardZcxl;
|
|
360
|
+
this.cardTime = card.cardTime ?? this.cardTime;
|
|
361
|
+
this.autoClplText = card.autoClplText ?? this.autoClplText;
|
|
362
|
+
this.autoMode = card.autoMode ?? this.autoMode;
|
|
363
|
+
this.autoSeat = card.autoSeat ?? this.autoSeat;
|
|
364
|
+
this.autoClpl = card.autoClpl ?? this.autoClpl;
|
|
365
|
+
this.autoCldl = card.autoCldl ?? this.autoCldl;
|
|
366
|
+
this.get4From = card.get4From ?? this.get4From;
|
|
367
|
+
}
|
|
368
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
export interface IGblbResponse {
|
|
2
|
+
whoBuild: number;
|
|
3
|
+
userIndx: number;
|
|
4
|
+
gblbIndx: number;
|
|
5
|
+
parentID: number;
|
|
6
|
+
hashCode: number;
|
|
7
|
+
dataLevl: number;
|
|
8
|
+
dataFrom: number;
|
|
9
|
+
dataType: number;
|
|
10
|
+
kjndKJQJ: number;
|
|
11
|
+
isLasted: number;
|
|
12
|
+
dataStat: number;
|
|
13
|
+
dataOrdr: number;
|
|
14
|
+
dataHide: number;
|
|
15
|
+
dataDate: number;
|
|
16
|
+
dataTime: number;
|
|
17
|
+
dataGUID: string;
|
|
18
|
+
mastName: string;
|
|
19
|
+
mastGUID: string;
|
|
20
|
+
createBy: string;
|
|
21
|
+
createAt: number;
|
|
22
|
+
updateBy: string;
|
|
23
|
+
updateAt: number;
|
|
24
|
+
deleteBy: string;
|
|
25
|
+
deleteAt: number;
|
|
26
|
+
queuesBy: number;
|
|
27
|
+
sourceND: number;
|
|
28
|
+
entityID: string;
|
|
29
|
+
gblbCode: string;
|
|
30
|
+
gblbName: string;
|
|
31
|
+
codeFull: string;
|
|
32
|
+
nameFull: string;
|
|
33
|
+
gblbMemo: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export class TGblbResponse implements IGblbResponse {
|
|
37
|
+
whoBuild: number = 0;
|
|
38
|
+
userIndx: number = 0;
|
|
39
|
+
gblbIndx: number = 0;
|
|
40
|
+
parentID: number = 0;
|
|
41
|
+
hashCode: number = 0;
|
|
42
|
+
dataLevl: number = 0;
|
|
43
|
+
dataFrom: number = 0;
|
|
44
|
+
dataType: number = 0;
|
|
45
|
+
kjndKJQJ: number = 0;
|
|
46
|
+
isLasted: number = 0;
|
|
47
|
+
dataStat: number = 0;
|
|
48
|
+
dataOrdr: number = 0;
|
|
49
|
+
dataHide: number = 0;
|
|
50
|
+
dataDate: number = 0;
|
|
51
|
+
dataTime: number = 0;
|
|
52
|
+
dataGUID: string = "";
|
|
53
|
+
mastName: string = "";
|
|
54
|
+
mastGUID: string = "";
|
|
55
|
+
createBy: string = "";
|
|
56
|
+
createAt: number = 0;
|
|
57
|
+
updateBy: string = "";
|
|
58
|
+
updateAt: number = 0;
|
|
59
|
+
deleteBy: string = "";
|
|
60
|
+
deleteAt: number = 0;
|
|
61
|
+
queuesBy: number = 0;
|
|
62
|
+
sourceND: number = 0;
|
|
63
|
+
entityID: string = "";
|
|
64
|
+
/** 国标编码 */
|
|
65
|
+
gblbCode: string = "";
|
|
66
|
+
/** 国标名称 */
|
|
67
|
+
gblbName: string = "";
|
|
68
|
+
/** 国标编码链 */
|
|
69
|
+
codeFull: string = "";
|
|
70
|
+
/** 国标名称链 */
|
|
71
|
+
nameFull: string = "";
|
|
72
|
+
/** 国标备注 */
|
|
73
|
+
gblbMemo: string = "";
|
|
74
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { IPathResponse } from "../core";
|
|
2
|
+
|
|
3
|
+
export interface IZcbdResponse {
|
|
4
|
+
whoBuild: number;
|
|
5
|
+
userIndx: number;
|
|
6
|
+
zcbdIndx: number;
|
|
7
|
+
parentID: number;
|
|
8
|
+
hashCode: number;
|
|
9
|
+
dataLevl: number;
|
|
10
|
+
dataFrom: number;
|
|
11
|
+
kjndKJQJ: number;
|
|
12
|
+
dataStat: number;
|
|
13
|
+
dataOrdr: number;
|
|
14
|
+
dataHide: number;
|
|
15
|
+
dataType: number;
|
|
16
|
+
dataDate: number;
|
|
17
|
+
dataTime: number;
|
|
18
|
+
dataGUID: string;
|
|
19
|
+
userMain: number;
|
|
20
|
+
mastName: string;
|
|
21
|
+
mastGUID: string;
|
|
22
|
+
createBy: string;
|
|
23
|
+
createAt: number;
|
|
24
|
+
updateBy: string;
|
|
25
|
+
updateAt: number;
|
|
26
|
+
deleteBy: string;
|
|
27
|
+
deleteAt: number;
|
|
28
|
+
queuesBy: number;
|
|
29
|
+
entityID: string;
|
|
30
|
+
sourceND: number;
|
|
31
|
+
menuMain: number;
|
|
32
|
+
menuUUID: string;
|
|
33
|
+
unitMain: number;
|
|
34
|
+
deptMain: number;
|
|
35
|
+
sqyhText: string;
|
|
36
|
+
sqbmText: string;
|
|
37
|
+
flowUndo: number;
|
|
38
|
+
flowText: string;
|
|
39
|
+
flowUser: string;
|
|
40
|
+
cardMain: number;
|
|
41
|
+
cardExid: number;
|
|
42
|
+
valueNew: number;
|
|
43
|
+
zcbdDate: number;
|
|
44
|
+
zcbdStat: number;
|
|
45
|
+
zcbdType: number;
|
|
46
|
+
/** 变动编码 */
|
|
47
|
+
zcbdCode: string;
|
|
48
|
+
/** 变动名称 */
|
|
49
|
+
zcbdName: string;
|
|
50
|
+
zcbdUses: string;
|
|
51
|
+
/** 变动备注 */
|
|
52
|
+
zcbdMemo: string;
|
|
53
|
+
|
|
54
|
+
listPath: IPathResponse[];
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export class TZcbdResponse implements IZcbdResponse {
|
|
58
|
+
whoBuild: number = 0;
|
|
59
|
+
userIndx: number = 0;
|
|
60
|
+
zcbdIndx: number = 0;
|
|
61
|
+
parentID: number = 0;
|
|
62
|
+
hashCode: number = 0;
|
|
63
|
+
dataLevl: number = 0;
|
|
64
|
+
dataFrom: number = 0;
|
|
65
|
+
kjndKJQJ: number = 0;
|
|
66
|
+
dataStat: number = 0;
|
|
67
|
+
dataOrdr: number = 0;
|
|
68
|
+
dataHide: number = 0;
|
|
69
|
+
dataType: number = 0;
|
|
70
|
+
dataDate: number = 0;
|
|
71
|
+
dataTime: number = 0;
|
|
72
|
+
dataGUID: string = "";
|
|
73
|
+
userMain: number = 0;
|
|
74
|
+
mastName: string = "";
|
|
75
|
+
mastGUID: string = "";
|
|
76
|
+
createBy: string = "";
|
|
77
|
+
createAt: number = 0;
|
|
78
|
+
updateBy: string = "";
|
|
79
|
+
updateAt: number = 0;
|
|
80
|
+
deleteBy: string = "";
|
|
81
|
+
deleteAt: number = 0;
|
|
82
|
+
queuesBy: number = 0;
|
|
83
|
+
entityID: string = "";
|
|
84
|
+
sourceND: number = 0;
|
|
85
|
+
menuMain: number = 0;
|
|
86
|
+
menuUUID: string = "";
|
|
87
|
+
unitMain: number = 0;
|
|
88
|
+
deptMain: number = 0;
|
|
89
|
+
sqyhText: string = "";
|
|
90
|
+
sqbmText: string = "";
|
|
91
|
+
flowUndo: number = 0;
|
|
92
|
+
flowText: string = "";
|
|
93
|
+
flowUser: string = "";
|
|
94
|
+
cardMain: number = 0;
|
|
95
|
+
cardExid: number = 0;
|
|
96
|
+
valueNew: number = 0;
|
|
97
|
+
zcbdDate: number = 0;
|
|
98
|
+
zcbdStat: number = 0;
|
|
99
|
+
zcbdType: number = 0;
|
|
100
|
+
zcbdCode: string = "";
|
|
101
|
+
zcbdName: string = "";
|
|
102
|
+
zcbdUses: string = "";
|
|
103
|
+
zcbdMemo: string = "";
|
|
104
|
+
|
|
105
|
+
listPath: IPathResponse[] = [];
|
|
106
|
+
}
|