@ningboyz/types 1.4.13 → 1.4.14
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
|
@@ -26,7 +26,7 @@ export interface IHznjBillResponse {
|
|
|
26
26
|
k9kmKmid: number;
|
|
27
27
|
/**方法依据--检测依据 */
|
|
28
28
|
k9kmKmmc: string;
|
|
29
|
-
|
|
29
|
+
/**定量限 */
|
|
30
30
|
limitVal: string;
|
|
31
31
|
/**指标 */
|
|
32
32
|
levelVal: string;
|
|
@@ -46,6 +46,22 @@ export interface IHznjBillResponse {
|
|
|
46
46
|
fromUserIndx: number;
|
|
47
47
|
/**关联 hznj_noti_bill */
|
|
48
48
|
fromNotiBill: number;
|
|
49
|
+
/**检出限 */
|
|
50
|
+
detecVal: string;
|
|
51
|
+
/**运算符1 */
|
|
52
|
+
operaTxt: string;
|
|
53
|
+
/**运算符2 */
|
|
54
|
+
operaTx2: string;
|
|
55
|
+
/**判定依据 */
|
|
56
|
+
accorTxt: string;
|
|
57
|
+
/**以总量计 */
|
|
58
|
+
useTotal: number;
|
|
59
|
+
/**总指标 */
|
|
60
|
+
totalVal: string;
|
|
61
|
+
/**组字典ID */
|
|
62
|
+
groupDic: number;
|
|
63
|
+
/**组 */
|
|
64
|
+
groupTxt: string;
|
|
49
65
|
}
|
|
50
66
|
|
|
51
67
|
export class THznjBillResponse implements IHznjBillResponse {
|
|
@@ -81,6 +97,14 @@ export class THznjBillResponse implements IHznjBillResponse {
|
|
|
81
97
|
fromWhoBuild: number = 0;
|
|
82
98
|
fromUserIndx: number = 0;
|
|
83
99
|
fromNotiBill: number = 0;
|
|
100
|
+
detecVal: string = "";
|
|
101
|
+
operaTxt: string = "";
|
|
102
|
+
operaTx2: string = "";
|
|
103
|
+
accorTxt: string = "";
|
|
104
|
+
useTotal: number = 0;
|
|
105
|
+
totalVal: string = "";
|
|
106
|
+
groupDic: number = 0;
|
|
107
|
+
groupTxt: string = "";
|
|
84
108
|
|
|
85
109
|
constructor(data: Partial<IHznjBillResponse> = {}) {
|
|
86
110
|
if (data) {
|
|
@@ -38,6 +38,8 @@ export interface IJapzK8kmResponse {
|
|
|
38
38
|
k8kmKmmc: string;
|
|
39
39
|
/** 样品分类 */
|
|
40
40
|
k0kmText: string;
|
|
41
|
+
/** 样品分类编码 导入时填写 */
|
|
42
|
+
fromK0kmKmbm: string;
|
|
41
43
|
parentCD: string;
|
|
42
44
|
|
|
43
45
|
/**检测项目 */
|
|
@@ -77,6 +79,8 @@ export class TJapzK8kmResponse implements IJapzK8kmResponse {
|
|
|
77
79
|
k0kmText: string = "";
|
|
78
80
|
parentCD: string = "";
|
|
79
81
|
|
|
82
|
+
fromK0kmKmbm: string = "";
|
|
83
|
+
|
|
80
84
|
/**检测项目 */
|
|
81
85
|
listItem: IJapzItemResponse[] = [];
|
|
82
86
|
|