@ningboyz/types 1.3.104 → 1.3.105
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
|
@@ -27,13 +27,13 @@ export interface IHznjBaseItemResponse {
|
|
|
27
27
|
/** 方法依据名称 */
|
|
28
28
|
k9kmKmmc: string;
|
|
29
29
|
/** 检出/定量限 */
|
|
30
|
-
limitVal:
|
|
30
|
+
limitVal: string;
|
|
31
31
|
/** 指标 */
|
|
32
|
-
levelVal:
|
|
32
|
+
levelVal: string;
|
|
33
33
|
/** 计量单位 */
|
|
34
34
|
jldwText: string;
|
|
35
35
|
/** 以总量计 */
|
|
36
|
-
useTotal:
|
|
36
|
+
useTotal: string;
|
|
37
37
|
/** 总指标 */
|
|
38
38
|
totalVal: number;
|
|
39
39
|
/** 状态: 0:停用,1:启用 */
|
|
@@ -66,10 +66,10 @@ export class THznjBaseItemResponse implements IHznjBaseItemResponse {
|
|
|
66
66
|
itemName: string = "";
|
|
67
67
|
k9kmKmid: number = 0;
|
|
68
68
|
k9kmKmmc: string = "";
|
|
69
|
-
limitVal:
|
|
70
|
-
levelVal:
|
|
69
|
+
limitVal: string = "";
|
|
70
|
+
levelVal: string = "";
|
|
71
71
|
jldwText: string = "";
|
|
72
|
-
useTotal:
|
|
72
|
+
useTotal: string = "";
|
|
73
73
|
totalVal: number = 0;
|
|
74
74
|
isActive: number = 0;
|
|
75
75
|
itemMemo: string = "";
|
|
@@ -27,9 +27,9 @@ export interface IHznjBillResponse {
|
|
|
27
27
|
/**方法依据--检测依据 */
|
|
28
28
|
k9kmKmmc: string;
|
|
29
29
|
/**检出/定量限 */
|
|
30
|
-
limitVal:
|
|
30
|
+
limitVal: string;
|
|
31
31
|
/**指标 */
|
|
32
|
-
levelVal:
|
|
32
|
+
levelVal: string;
|
|
33
33
|
/**单位 */
|
|
34
34
|
jldwText: string;
|
|
35
35
|
/**实测结果 */
|
|
@@ -70,8 +70,8 @@ export class THznjBillResponse implements IHznjBillResponse {
|
|
|
70
70
|
itemName: string = "";
|
|
71
71
|
k9kmKmid: number = 0;
|
|
72
72
|
k9kmKmmc: string = "";
|
|
73
|
-
limitVal:
|
|
74
|
-
levelVal:
|
|
73
|
+
limitVal: string = "";
|
|
74
|
+
levelVal: string = "";
|
|
75
75
|
jldwText: string = "";
|
|
76
76
|
resultText: number = 0;
|
|
77
77
|
actualAt: number = 0;
|
|
@@ -64,15 +64,15 @@ export interface IHznjNotiBillResponse {
|
|
|
64
64
|
/** 方法依据名称 */
|
|
65
65
|
k9kmKmmc: string;
|
|
66
66
|
/** 检出/定量限 */
|
|
67
|
-
limitVal:
|
|
67
|
+
limitVal: string;
|
|
68
68
|
/** 指标 */
|
|
69
|
-
levelVal:
|
|
69
|
+
levelVal: string;
|
|
70
70
|
/** 计量单位 */
|
|
71
71
|
jldwText: string;
|
|
72
72
|
/** 以总量计 */
|
|
73
73
|
useTotal: number;
|
|
74
74
|
/** 总指标 */
|
|
75
|
-
totalVal:
|
|
75
|
+
totalVal: string;
|
|
76
76
|
/** 状态: 0:停用,1:启用 */
|
|
77
77
|
isActive: number;
|
|
78
78
|
/** 备注信息 */
|
|
@@ -159,11 +159,11 @@ export class THznjNotiBillResponse implements IHznjNotiBillResponse {
|
|
|
159
159
|
itemName: string = "";
|
|
160
160
|
k9kmKmid: number = 0;
|
|
161
161
|
k9kmKmmc: string = "";
|
|
162
|
-
limitVal:
|
|
163
|
-
levelVal:
|
|
162
|
+
limitVal: string = "";
|
|
163
|
+
levelVal: string = "";
|
|
164
164
|
jldwText: string = "";
|
|
165
165
|
useTotal: number = 0;
|
|
166
|
-
totalVal:
|
|
166
|
+
totalVal: string = "";
|
|
167
167
|
isActive: number = 0;
|
|
168
168
|
groupTxt: string = "";
|
|
169
169
|
itemMemo: string = "";
|
|
@@ -27,15 +27,15 @@ export interface IHznjXmsyItemResponse {
|
|
|
27
27
|
/**方法依据名称 */
|
|
28
28
|
k9kmKmmc: string;
|
|
29
29
|
/**检出/定量限 */
|
|
30
|
-
limitVal:
|
|
30
|
+
limitVal: string;
|
|
31
31
|
/**指标 */
|
|
32
|
-
levelVal:
|
|
32
|
+
levelVal: string;
|
|
33
33
|
/**单位 */
|
|
34
34
|
jldwText: string;
|
|
35
35
|
/**以总量计 */
|
|
36
36
|
useTotal: number;
|
|
37
37
|
/**总指标 */
|
|
38
|
-
totalVal:
|
|
38
|
+
totalVal: string;
|
|
39
39
|
/**状态{0:停用,1:启用} */
|
|
40
40
|
isActive: number;
|
|
41
41
|
/**备注信息 */
|
|
@@ -66,11 +66,11 @@ export class THznjXmsyItemResponse implements IHznjXmsyItemResponse {
|
|
|
66
66
|
itemName: string = "";
|
|
67
67
|
k9kmKmid: number = 0;
|
|
68
68
|
k9kmKmmc: string = "";
|
|
69
|
-
limitVal:
|
|
70
|
-
levelVal:
|
|
69
|
+
limitVal: string = "";
|
|
70
|
+
levelVal: string = "";
|
|
71
71
|
jldwText: string = "";
|
|
72
72
|
useTotal: number = 0;
|
|
73
|
-
totalVal:
|
|
73
|
+
totalVal: string = "";
|
|
74
74
|
isActive: number = 0;
|
|
75
75
|
itemMemo: string = "";
|
|
76
76
|
/**组 */
|