@ningboyz/types 1.3.155 → 1.3.157

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.3.155",
4
+ "version": "1.3.157",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -26,6 +26,8 @@ export interface IHznkDataItemResponse {
26
26
  totalVal: number;
27
27
  dictMain: number;
28
28
  dictName: string;
29
+ deptMain: number;
30
+ deptName: string;
29
31
 
30
32
  /**人员列表 */
31
33
  listUser: IUserLiteResponse[];
@@ -56,6 +58,8 @@ export class THznkDataItemResponse implements IHznkDataItemResponse {
56
58
  totalVal: number = 0;
57
59
  dictMain: number = 0;
58
60
  dictName: string = "";
61
+ deptMain: number = 0;
62
+ deptName: string = "";
59
63
 
60
64
  listUser: IUserLiteResponse[] = [];
61
65
 
@@ -36,6 +36,36 @@ export interface IJapzItemResponse {
36
36
  itemName: string;
37
37
  itemMemo: string;
38
38
 
39
+ /** 定量限 */
40
+ limitVal: string;
41
+ /** 指标 */
42
+ levelVal: string;
43
+ /** 计量单位 */
44
+ jldwText: string;
45
+ /** 以总量计 */
46
+ useTotal: number;
47
+ /** 总指标 */
48
+ totalVal: string;
49
+ /** 状态: 0:停用,1:启用 */
50
+ isActive: number;
51
+ /** 备注信息 */
52
+ fromItemMemo: string;
53
+
54
+ /** 组 */
55
+ groupTxt: string;
56
+ /**组字典ID */
57
+ groupDic: number;
58
+ /**运算符 */
59
+ operaTxt: string;
60
+ /**运算符2 */
61
+ operaTx2: string;
62
+ /**检出限 */
63
+ detecVal: string;
64
+ /** 检验/检测依据 */
65
+ k9kmKmmc: string;
66
+ /** 检验/检测依据 */
67
+ k9kmKmid: number;
68
+
39
69
  listK9km: IJapzK9kmResponse[];
40
70
  }
41
71
 
@@ -71,5 +101,20 @@ export class TJapzItemResponse implements IJapzItemResponse {
71
101
  itemName: string = "";
72
102
  itemMemo: string = "";
73
103
 
104
+ detecVal: string = "";
105
+ limitVal: string = "";
106
+ levelVal: string = "";
107
+ jldwText: string = "";
108
+ operaTxt: string = "";
109
+ operaTx2: string = "";
110
+ useTotal: number = 0;
111
+ totalVal: string = "";
112
+ isActive: number = 0;
113
+ groupDic: number = 0;
114
+ groupTxt: string = "";
115
+ fromItemMemo: string = "";
116
+ k9kmKmmc: string = "";
117
+ k9kmKmid: number = 0;
118
+
74
119
  listK9km: IJapzK9kmResponse[] = [];
75
120
  }