@ningboyz/types 1.5.114 → 1.5.115
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
|
@@ -48,6 +48,8 @@ export interface IHznjBaseItemResponse {
|
|
|
48
48
|
groupDic: number;
|
|
49
49
|
/**运算符 */
|
|
50
50
|
operaTxt: string;
|
|
51
|
+
/**总运算符 */
|
|
52
|
+
operaTx2: string;
|
|
51
53
|
/**检出限 */
|
|
52
54
|
detecVal: string;
|
|
53
55
|
/**判定依据 */
|
|
@@ -96,6 +98,8 @@ export class THznjBaseItemResponse implements IHznjBaseItemResponse {
|
|
|
96
98
|
groupDic: number = 0;
|
|
97
99
|
/**运算符 */
|
|
98
100
|
operaTxt: string = "";
|
|
101
|
+
/**总运算符 */
|
|
102
|
+
operaTx2: string = "";
|
|
99
103
|
/**检出限 */
|
|
100
104
|
detecVal: string = "";
|
|
101
105
|
/**判定依据 */
|
|
@@ -19,6 +19,8 @@ export interface IHznjXmjjItemResponse {
|
|
|
19
19
|
deleteAt: number;
|
|
20
20
|
queuesBy: number;
|
|
21
21
|
getCount: number;
|
|
22
|
+
k7kmKmid: number;
|
|
23
|
+
k8kmKmid: number;
|
|
22
24
|
ypztMode: number;
|
|
23
25
|
ypztText: string;
|
|
24
26
|
fromWhoBuild: number;
|
|
@@ -74,6 +76,8 @@ export class THznjXmjjItemResponse implements IHznjXmjjItemResponse {
|
|
|
74
76
|
ypztMode: number = 0;
|
|
75
77
|
ypztText: string = "";
|
|
76
78
|
fromWhoBuild: number = 0;
|
|
79
|
+
k7kmKmid: number = 0;
|
|
80
|
+
k8kmKmid: number = 0;
|
|
77
81
|
fromUserIndx: number = 0;
|
|
78
82
|
fromHznjXmsy: number = 0;
|
|
79
83
|
|
|
@@ -98,6 +98,8 @@ export interface IHznjXmsyResponse {
|
|
|
98
98
|
senderAt: number;
|
|
99
99
|
/** 支付对象 */
|
|
100
100
|
payWhois: number;
|
|
101
|
+
/** 支付对象文本 */
|
|
102
|
+
whoisTxt: string;
|
|
101
103
|
/** 付费总额 */
|
|
102
104
|
payTotal: number;
|
|
103
105
|
/** 商标 */
|
|
@@ -156,6 +158,8 @@ export interface IHznjXmsyResponse {
|
|
|
156
158
|
listWTDW: THznj.IHznjXmsyWtdwResponse[];
|
|
157
159
|
/**抽样人员 */
|
|
158
160
|
listNBYH: TCore.IUserLiteResponse[];
|
|
161
|
+
/** 所有样品都取该样品对应的任务通知单中的所有检测项目 */
|
|
162
|
+
listNotiBill: THznj.IHznjNotiBillResponse[];
|
|
159
163
|
|
|
160
164
|
/**
|
|
161
165
|
* 虚拟字段
|
|
@@ -227,6 +231,7 @@ export class THznjXmsyResponse implements IHznjXmsyResponse {
|
|
|
227
231
|
senderAt: number = 0;
|
|
228
232
|
useCount: number = 0;
|
|
229
233
|
payWhois: number = 0;
|
|
234
|
+
whoisTxt: string = "";
|
|
230
235
|
payTotal: number = 0;
|
|
231
236
|
hznjBase: number = 0;
|
|
232
237
|
/** 商标 */
|
|
@@ -283,6 +288,7 @@ export class THznjXmsyResponse implements IHznjXmsyResponse {
|
|
|
283
288
|
listCJDW: THznj.IHznjXmsyCjdwResponse[] = [];
|
|
284
289
|
listWTDW: THznj.IHznjXmsyWtdwResponse[] = [];
|
|
285
290
|
listNBYH: TCore.IUserLiteResponse[] = [];
|
|
291
|
+
listNotiBill: THznj.IHznjNotiBillResponse[] = [];
|
|
286
292
|
|
|
287
293
|
constructor(data: Partial<IHznjXmsyResponse> = {}) {
|
|
288
294
|
if (data) {
|