@ningboyz/types 1.4.13 → 1.4.15
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
|
@@ -139,7 +139,7 @@ export interface IDataResponse {
|
|
|
139
139
|
cardKeep: number;
|
|
140
140
|
/**负责人 */
|
|
141
141
|
cardKeepText: string;
|
|
142
|
-
/**联系方式 */
|
|
142
|
+
/**联系方式(关联cardMain) */
|
|
143
143
|
dContact: string;
|
|
144
144
|
/**当前状态 */
|
|
145
145
|
cardZczt: number;
|
|
@@ -155,6 +155,8 @@ export interface IDataResponse {
|
|
|
155
155
|
cardMast: number;
|
|
156
156
|
/**保管人 */
|
|
157
157
|
cardMastText: string;
|
|
158
|
+
/**联系方式 */
|
|
159
|
+
wContact: string;
|
|
158
160
|
}
|
|
159
161
|
|
|
160
162
|
export class TDataResponse implements IDataResponse {
|
|
@@ -294,6 +296,7 @@ export class TDataResponse implements IDataResponse {
|
|
|
294
296
|
cardMast: number = 0;
|
|
295
297
|
/**保管人 */
|
|
296
298
|
cardMastText: string = "";
|
|
299
|
+
wContact: string = "";
|
|
297
300
|
|
|
298
301
|
static toFlowData(card: TDataResponse): TFlowDataResponse {
|
|
299
302
|
let result = new TFlowDataResponse();
|
|
@@ -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
|
|