@ningboyz/types 1.3.81 → 1.3.82
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/package.json
CHANGED
|
@@ -113,6 +113,31 @@ export interface IDataResponse {
|
|
|
113
113
|
//#虚拟字段
|
|
114
114
|
ylcs: number; //#月里程数
|
|
115
115
|
nclcs: number; //#年初里程数
|
|
116
|
+
|
|
117
|
+
/**所属部门 */
|
|
118
|
+
cardDeptText: string;
|
|
119
|
+
/**单号 */
|
|
120
|
+
BillCode: string;
|
|
121
|
+
/**经办人 */
|
|
122
|
+
cardUser: number;
|
|
123
|
+
/**存放地点 */
|
|
124
|
+
cardLaid: number;
|
|
125
|
+
/**存放地点 */
|
|
126
|
+
cardLaidText: string;
|
|
127
|
+
/**负责人 */
|
|
128
|
+
cardKeep: number;
|
|
129
|
+
/**负责人 */
|
|
130
|
+
cardKeepText: string;
|
|
131
|
+
/**联系方式 */
|
|
132
|
+
dContact: string;
|
|
133
|
+
/**当前状态 */
|
|
134
|
+
cardZczt: number;
|
|
135
|
+
/**当前状态 */
|
|
136
|
+
cardZcztText: string;
|
|
137
|
+
/**使用方向 */
|
|
138
|
+
cardSyfx: number;
|
|
139
|
+
/**使用方向 */
|
|
140
|
+
cardSyfxText: string;
|
|
116
141
|
}
|
|
117
142
|
|
|
118
143
|
export class TDataResponse implements IDataResponse {
|
|
@@ -213,6 +238,31 @@ export class TDataResponse implements IDataResponse {
|
|
|
213
238
|
ylcs: number = 0;
|
|
214
239
|
nclcs: number = 0;
|
|
215
240
|
|
|
241
|
+
/**所属部门 */
|
|
242
|
+
cardDeptText: string = "";
|
|
243
|
+
/**单号 */
|
|
244
|
+
BillCode: string = "";
|
|
245
|
+
/**经办人 */
|
|
246
|
+
cardUser: number = 0;
|
|
247
|
+
/**存放地点 */
|
|
248
|
+
cardLaid: number = 0;
|
|
249
|
+
/**存放地点 */
|
|
250
|
+
cardLaidText: string = "";
|
|
251
|
+
/**负责人 */
|
|
252
|
+
cardKeep: number = 0;
|
|
253
|
+
/**负责人 */
|
|
254
|
+
cardKeepText: string = "";
|
|
255
|
+
/**联系方式 */
|
|
256
|
+
dContact: string = "";
|
|
257
|
+
/**当前状态 */
|
|
258
|
+
cardZczt: number = 0;
|
|
259
|
+
/**当前状态 */
|
|
260
|
+
cardZcztText: string = "";
|
|
261
|
+
/**使用方向 */
|
|
262
|
+
cardSyfx: number = 0;
|
|
263
|
+
/**使用方向 */
|
|
264
|
+
cardSyfxText: string = "";
|
|
265
|
+
|
|
216
266
|
static toFlowData(card: TDataResponse): TFlowDataResponse {
|
|
217
267
|
let result = new TFlowDataResponse();
|
|
218
268
|
result.whoBuild = card.whoBuild;
|
|
@@ -193,6 +193,8 @@ export interface ICardMainResponse {
|
|
|
193
193
|
cardCodeTxt3: string;
|
|
194
194
|
/** 名称待见 */
|
|
195
195
|
cardCodeTxt4: string;
|
|
196
|
+
/**单号 */
|
|
197
|
+
billCode: string;
|
|
196
198
|
|
|
197
199
|
/** 保修截止日期 */
|
|
198
200
|
cardBxjz: number;
|
|
@@ -558,6 +560,8 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
558
560
|
cardCodeTxt3: string = "";
|
|
559
561
|
cardCodeTxt4: string = "";
|
|
560
562
|
|
|
563
|
+
billCode: string = "";
|
|
564
|
+
|
|
561
565
|
cardBxjz: number = 0;
|
|
562
566
|
|
|
563
567
|
landTdly: number = 0;
|
|
@@ -24,6 +24,8 @@ export interface IHznjXmjjItemResponse {
|
|
|
24
24
|
fromWhoBuild: number;
|
|
25
25
|
fromUserIndx: number;
|
|
26
26
|
fromHznjXmsy: number;
|
|
27
|
+
/**组 */
|
|
28
|
+
groupTxt: string;
|
|
27
29
|
|
|
28
30
|
/**
|
|
29
31
|
* 虚拟字段
|
|
@@ -70,6 +72,8 @@ export class THznjXmjjItemResponse implements IHznjXmjjItemResponse {
|
|
|
70
72
|
k8kmKmmc: string = "";
|
|
71
73
|
k8kmKmbm: string = "";
|
|
72
74
|
jldwText: string = "";
|
|
75
|
+
/**组 */
|
|
76
|
+
groupTxt: string = "";
|
|
73
77
|
|
|
74
78
|
constructor(data: Partial<IHznjXmjjItemResponse> = {}) {
|
|
75
79
|
if (data) {
|
|
@@ -40,6 +40,8 @@ export interface IHznjXmsyItemResponse {
|
|
|
40
40
|
isActive: number;
|
|
41
41
|
/**备注信息 */
|
|
42
42
|
itemMemo: string;
|
|
43
|
+
/**组 */
|
|
44
|
+
groupTxt: string;
|
|
43
45
|
}
|
|
44
46
|
|
|
45
47
|
export class THznjXmsyItemResponse implements IHznjXmsyItemResponse {
|
|
@@ -71,6 +73,8 @@ export class THznjXmsyItemResponse implements IHznjXmsyItemResponse {
|
|
|
71
73
|
totalVal: number = 0;
|
|
72
74
|
isActive: number = 0;
|
|
73
75
|
itemMemo: string = "";
|
|
76
|
+
/**组 */
|
|
77
|
+
groupTxt: string = "";
|
|
74
78
|
|
|
75
79
|
constructor(data: Partial<IHznjXmsyItemResponse> = {}) {
|
|
76
80
|
if (data) {
|
|
@@ -88,6 +88,11 @@ export interface IHznjXmsyWtdwResponse {
|
|
|
88
88
|
batchTxt: string;
|
|
89
89
|
/**规格型号 */
|
|
90
90
|
ggxhText: string;
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* 虚拟字段
|
|
94
|
+
* */
|
|
95
|
+
baseIndx: number;
|
|
91
96
|
}
|
|
92
97
|
|
|
93
98
|
export class THznjXmsyWtdwResponse implements IHznjXmsyWtdwResponse {
|
|
@@ -143,6 +148,7 @@ export class THznjXmsyWtdwResponse implements IHznjXmsyWtdwResponse {
|
|
|
143
148
|
brandTxt: string = "";
|
|
144
149
|
batchTxt: string = "";
|
|
145
150
|
ggxhText: string = "";
|
|
151
|
+
baseIndx: number = 0;
|
|
146
152
|
|
|
147
153
|
constructor(data: Partial<IHznjXmsyWtdwResponse> = {}) {
|
|
148
154
|
if (data) {
|