@ningboyz/types 1.3.116 → 1.3.118
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
|
@@ -438,6 +438,8 @@ export interface ICardMainResponse {
|
|
|
438
438
|
listPropDict: IDictResponse[];
|
|
439
439
|
listPropDept: IDeptResponse[];
|
|
440
440
|
|
|
441
|
+
listType: IDictResponse[];
|
|
442
|
+
|
|
441
443
|
// 虚拟字段
|
|
442
444
|
cardZjff: string;
|
|
443
445
|
|
|
@@ -699,6 +701,7 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
699
701
|
listFrom: ICardFromResponse[] = [];
|
|
700
702
|
listPropDict: IDictResponse[] = [];
|
|
701
703
|
listPropDept: IDeptResponse[] = [];
|
|
704
|
+
listType: IDictResponse[] = [];
|
|
702
705
|
|
|
703
706
|
// 虚拟字段
|
|
704
707
|
cardZjff: string = "";
|
|
@@ -275,3 +275,4 @@ export const CONST_SYS_TYPEU_甬农检_样品交接_样品状态 = "甬农检-
|
|
|
275
275
|
export const CONST_SYS_TYPEU_甬农检_仪器名称_型号_编号 = "甬农检-仪器名称、型号、编号";
|
|
276
276
|
export const CONST_SYS_TYPEU_甬农检_单项判定 = "甬农检-单项判定";
|
|
277
277
|
export const CONST_SYS_TYPEU_甬农检_实测结果 = "甬农检-实测结果";
|
|
278
|
+
export const CONST_SYS_TYPEU_甬农检_分组 = "甬农检-分组";
|
package/src/enums/storeId.ts
CHANGED
|
@@ -26,7 +26,7 @@ export interface IHznjBaseItemResponse {
|
|
|
26
26
|
k9kmKmid: number;
|
|
27
27
|
/** 方法依据名称 */
|
|
28
28
|
k9kmKmmc: string;
|
|
29
|
-
/**
|
|
29
|
+
/** 定量限 */
|
|
30
30
|
limitVal: string;
|
|
31
31
|
/** 指标 */
|
|
32
32
|
levelVal: string;
|
|
@@ -42,6 +42,12 @@ export interface IHznjBaseItemResponse {
|
|
|
42
42
|
itemMemo: string;
|
|
43
43
|
/** 组 */
|
|
44
44
|
groupTxt: string;
|
|
45
|
+
/**组字典ID */
|
|
46
|
+
groupDic: number;
|
|
47
|
+
/**运算符 */
|
|
48
|
+
operaTxt: string;
|
|
49
|
+
/**检出限 */
|
|
50
|
+
detecVal: string;
|
|
45
51
|
}
|
|
46
52
|
|
|
47
53
|
export class THznjBaseItemResponse implements IHznjBaseItemResponse {
|
|
@@ -74,6 +80,12 @@ export class THznjBaseItemResponse implements IHznjBaseItemResponse {
|
|
|
74
80
|
isActive: number = 0;
|
|
75
81
|
itemMemo: string = "";
|
|
76
82
|
groupTxt: string = "";
|
|
83
|
+
/**组字典ID */
|
|
84
|
+
groupDic: number = 0;
|
|
85
|
+
/**运算符 */
|
|
86
|
+
operaTxt: string = "";
|
|
87
|
+
/**检出限 */
|
|
88
|
+
detecVal: string = "";
|
|
77
89
|
|
|
78
90
|
constructor(data: Partial<IHznjBaseItemResponse> = {}) {
|
|
79
91
|
if (data) {
|
|
@@ -161,6 +161,9 @@ export interface IMyoaMainResponse {
|
|
|
161
161
|
* 车辆名称
|
|
162
162
|
*/
|
|
163
163
|
cardName: string;
|
|
164
|
+
|
|
165
|
+
/**评分 */
|
|
166
|
+
inputVal: number;
|
|
164
167
|
/**
|
|
165
168
|
* 入仓/领用原卡片
|
|
166
169
|
* */
|
|
@@ -187,6 +190,7 @@ export interface IMyoaMainResponse {
|
|
|
187
190
|
listDDDW: IUserLiteResponse[];
|
|
188
191
|
listDLDW: IUserLiteResponse[];
|
|
189
192
|
listPGDW: IMyoaPGDWResponse[]; // 评审审批时的评审代表
|
|
193
|
+
listType: TCore.IDictResponse[];
|
|
190
194
|
|
|
191
195
|
//虚拟字段
|
|
192
196
|
detailId: number;
|
|
@@ -319,7 +323,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
319
323
|
lastMemo: string = "";
|
|
320
324
|
usesDzqz: number = 0;
|
|
321
325
|
flowUser: string = "";
|
|
322
|
-
|
|
326
|
+
/** 送审/审核时间 */
|
|
323
327
|
lastTime: number = 0;
|
|
324
328
|
|
|
325
329
|
cardUnitText: string = "";
|
|
@@ -333,6 +337,8 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
333
337
|
rangeOutText: string = "";
|
|
334
338
|
autoModeText: string = "";
|
|
335
339
|
cardName: string = "";
|
|
340
|
+
/**评分 */
|
|
341
|
+
inputVal: number = 0;
|
|
336
342
|
|
|
337
343
|
laidMain: number = 0;
|
|
338
344
|
laidText: string = "";
|
|
@@ -358,6 +364,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
358
364
|
listDDDW: IUserLiteResponse[] = [];
|
|
359
365
|
listDLDW: IUserLiteResponse[] = [];
|
|
360
366
|
listPGDW: IMyoaPGDWResponse[] = []; // 评审审批时的评审代表
|
|
367
|
+
listType: TCore.IDictResponse[] = [];
|
|
361
368
|
|
|
362
369
|
//虚拟字段
|
|
363
370
|
detailId: number = 0;
|
|
@@ -34,6 +34,8 @@ export interface IWtuiNodeResponse {
|
|
|
34
34
|
withPara: string;
|
|
35
35
|
wtuiMain: number;
|
|
36
36
|
wtuiRoot: number;
|
|
37
|
+
listNode: IWtuiNodeResponse[];
|
|
38
|
+
rootIndx: number;
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
export class TWtuiNodeResponse implements IWtuiNodeResponse {
|
|
@@ -72,4 +74,6 @@ export class TWtuiNodeResponse implements IWtuiNodeResponse {
|
|
|
72
74
|
withPara: string = "";
|
|
73
75
|
wtuiMain: number = 0;
|
|
74
76
|
wtuiRoot: number = 0;
|
|
77
|
+
listNode: IWtuiNodeResponse[] = [];
|
|
78
|
+
rootIndx: number = -1;
|
|
75
79
|
}
|