@ningboyz/types 1.3.39 → 1.3.40
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
|
@@ -138,6 +138,8 @@ export interface IHzcbMainResponse {
|
|
|
138
138
|
finishEd: number;
|
|
139
139
|
/**地块名称 */
|
|
140
140
|
nodeText: string;
|
|
141
|
+
/**照片 */
|
|
142
|
+
hzcbCoverURL: string;
|
|
141
143
|
|
|
142
144
|
/** 附件 */
|
|
143
145
|
listPath: TCore.IPathResponse[];
|
|
@@ -262,6 +264,12 @@ export class THzcbMainResponse implements IHzcbMainResponse {
|
|
|
262
264
|
hzcbJsje: number = 0;
|
|
263
265
|
finishEd: number = 0;
|
|
264
266
|
nodeText: string = "";
|
|
267
|
+
hzcbCoverURL: string = "";
|
|
268
|
+
|
|
269
|
+
listPath: TCore.IPathResponse[] = [];
|
|
270
|
+
listZJLY: THzcb.IHzcbZjlyResponse[] = [];
|
|
271
|
+
listNode: THzcb.IHzcbNodeResponse[] = [];
|
|
272
|
+
listLock: THzcb.IHzcbMainResponse[] = [];
|
|
265
273
|
|
|
266
274
|
constructor(card: any = {}) {
|
|
267
275
|
if (card) {
|
|
@@ -294,8 +302,4 @@ export class THzcbMainResponse implements IHzcbMainResponse {
|
|
|
294
302
|
result.flowStat = xmyk.hzcbStat;
|
|
295
303
|
return result;
|
|
296
304
|
}
|
|
297
|
-
listPath: TCore.IPathResponse[] = [];
|
|
298
|
-
listZJLY: THzcb.IHzcbZjlyResponse[] = [];
|
|
299
|
-
listNode: THzcb.IHzcbNodeResponse[] = [];
|
|
300
|
-
listLock: THzcb.IHzcbMainResponse[] = [];
|
|
301
305
|
}
|
|
@@ -27,6 +27,8 @@ export interface IHzcbNodeResponse {
|
|
|
27
27
|
nodeBlob: string;
|
|
28
28
|
/**备注信息 */
|
|
29
29
|
nodeMemo: string;
|
|
30
|
+
/**照片 */
|
|
31
|
+
hzcbCoverURL: string;
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
export class THzcbNodeResponse implements IHzcbNodeResponse {
|
|
@@ -53,4 +55,5 @@ export class THzcbNodeResponse implements IHzcbNodeResponse {
|
|
|
53
55
|
mjValue1: number = 0;
|
|
54
56
|
nodeBlob: string = "";
|
|
55
57
|
nodeMemo: string = "";
|
|
58
|
+
hzcbCoverURL: string = "";
|
|
56
59
|
}
|
|
@@ -130,6 +130,12 @@ export interface IHznjXmsyResponse {
|
|
|
130
130
|
listCJDW: THznj.IHznjXmsyCjdwResponse[];
|
|
131
131
|
/**委托单位|受检单位 */
|
|
132
132
|
listWTDW: THznj.IHznjXmsyWtdwResponse[];
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* 虚拟字段
|
|
137
|
+
* */
|
|
138
|
+
xmjjIndx: number;
|
|
133
139
|
}
|
|
134
140
|
|
|
135
141
|
export class THznjXmsyResponse implements IHznjXmsyResponse {
|
|
@@ -222,6 +228,9 @@ export class THznjXmsyResponse implements IHznjXmsyResponse {
|
|
|
222
228
|
flowMain: number = 0;
|
|
223
229
|
flowNode: number = 0;
|
|
224
230
|
|
|
231
|
+
|
|
232
|
+
xmjjIndx: number = 0;
|
|
233
|
+
|
|
225
234
|
listPath: TCore.IPathResponse[] = [];
|
|
226
235
|
listItem: THznj.IHznjXmsyItemResponse[] = [];
|
|
227
236
|
listCJDW: THznj.IHznjXmsyCjdwResponse[] = [];
|