@ningboyz/types 1.3.111 → 1.3.113
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
|
@@ -108,6 +108,14 @@ export interface IHznjXmsyResponse {
|
|
|
108
108
|
wtrqDate: number;
|
|
109
109
|
/** 报告日期 */
|
|
110
110
|
bgrqDate: number;
|
|
111
|
+
/**抽样重量 */
|
|
112
|
+
xmsyCyzl: number;
|
|
113
|
+
/**到样重量 */
|
|
114
|
+
xmsyDyzl: number;
|
|
115
|
+
/**抽样日期 */
|
|
116
|
+
xmsyCyrq: number;
|
|
117
|
+
/**抽样人文本 */
|
|
118
|
+
nbyhText: string;
|
|
111
119
|
|
|
112
120
|
coverURL: string;
|
|
113
121
|
touchURL: string;
|
|
@@ -132,7 +140,8 @@ export interface IHznjXmsyResponse {
|
|
|
132
140
|
listCJDW: THznj.IHznjXmsyCjdwResponse[];
|
|
133
141
|
/**委托单位|受检单位 */
|
|
134
142
|
listWTDW: THznj.IHznjXmsyWtdwResponse[];
|
|
135
|
-
|
|
143
|
+
/**抽样人员 */
|
|
144
|
+
listNBYH: TCore.IUserLiteResponse[];
|
|
136
145
|
|
|
137
146
|
/**
|
|
138
147
|
* 虚拟字段
|
|
@@ -215,6 +224,14 @@ export class THznjXmsyResponse implements IHznjXmsyResponse {
|
|
|
215
224
|
wtrqDate: number = 0;
|
|
216
225
|
/** 报告日期 */
|
|
217
226
|
bgrqDate: number = 0;
|
|
227
|
+
/**抽样重量 */
|
|
228
|
+
xmsyCyzl: number = 0;
|
|
229
|
+
/**到样重量 */
|
|
230
|
+
xmsyDyzl: number = 0;
|
|
231
|
+
/**抽样日期 */
|
|
232
|
+
xmsyCyrq: number = 0;
|
|
233
|
+
/**抽样人文本 */
|
|
234
|
+
nbyhText: string = "";
|
|
218
235
|
|
|
219
236
|
coverURL: string = "";
|
|
220
237
|
touchURL: string = "";
|
|
@@ -231,13 +248,13 @@ export class THznjXmsyResponse implements IHznjXmsyResponse {
|
|
|
231
248
|
flowMain: number = 0;
|
|
232
249
|
flowNode: number = 0;
|
|
233
250
|
|
|
234
|
-
|
|
235
251
|
xmjjIndx: number = 0;
|
|
236
252
|
|
|
237
253
|
listPath: TCore.IPathResponse[] = [];
|
|
238
254
|
listItem: THznj.IHznjXmsyItemResponse[] = [];
|
|
239
255
|
listCJDW: THznj.IHznjXmsyCjdwResponse[] = [];
|
|
240
256
|
listWTDW: THznj.IHznjXmsyWtdwResponse[] = [];
|
|
257
|
+
listNBYH: TCore.IUserLiteResponse[] = [];
|
|
241
258
|
|
|
242
259
|
constructor(data: Partial<IHznjXmsyResponse> = {}) {
|
|
243
260
|
if (data) {
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { IJapzK9kmResponse } from "./IJapzK9kmResponse";
|
|
2
|
+
|
|
1
3
|
export interface IJapzItemResponse {
|
|
2
4
|
whoBuild: number;
|
|
3
5
|
userIndx: number;
|
|
@@ -33,6 +35,8 @@ export interface IJapzItemResponse {
|
|
|
33
35
|
/** 项目名称 */
|
|
34
36
|
itemName: string;
|
|
35
37
|
itemMemo: string;
|
|
38
|
+
|
|
39
|
+
listK9km: IJapzK9kmResponse[];
|
|
36
40
|
}
|
|
37
41
|
|
|
38
42
|
export class TJapzItemResponse implements IJapzItemResponse {
|
|
@@ -66,4 +70,6 @@ export class TJapzItemResponse implements IJapzItemResponse {
|
|
|
66
70
|
itemCode: string = "";
|
|
67
71
|
itemName: string = "";
|
|
68
72
|
itemMemo: string = "";
|
|
73
|
+
|
|
74
|
+
listK9km: IJapzK9kmResponse[] = [];
|
|
69
75
|
}
|