@ningboyz/types 1.3.115 → 1.3.117

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.115",
4
+ "version": "1.3.117",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -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_甬农检_分组 = "甬农检-分组";
@@ -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) {
@@ -112,6 +112,10 @@ export interface IHznjXmsyResponse {
112
112
  xmsyCyzl: number;
113
113
  /**到样重量 */
114
114
  xmsyDyzl: number;
115
+ /**抽样重量(文本) */
116
+ cyzlText: string;
117
+ /**到样重量(文本) */
118
+ dyzlText: string;
115
119
  /**抽样日期 */
116
120
  xmsyCyrq: number;
117
121
  /**抽样人文本 */
@@ -228,6 +232,10 @@ export class THznjXmsyResponse implements IHznjXmsyResponse {
228
232
  xmsyCyzl: number = 0;
229
233
  /**到样重量 */
230
234
  xmsyDyzl: number = 0;
235
+ /**抽样重量 */
236
+ cyzlText: string = "";
237
+ /**到样重量 */
238
+ dyzlText: string = "";
231
239
  /**抽样日期 */
232
240
  xmsyCyrq: number = 0;
233
241
  /**抽样人文本 */
@@ -187,6 +187,7 @@ export interface IMyoaMainResponse {
187
187
  listDDDW: IUserLiteResponse[];
188
188
  listDLDW: IUserLiteResponse[];
189
189
  listPGDW: IMyoaPGDWResponse[]; // 评审审批时的评审代表
190
+ listType: TCore.IDictResponse[];
190
191
 
191
192
  //虚拟字段
192
193
  detailId: number;
@@ -319,7 +320,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
319
320
  lastMemo: string = "";
320
321
  usesDzqz: number = 0;
321
322
  flowUser: string = "";
322
- /** 送审/审核时间 */
323
+ /** 送审/审核时间 */
323
324
  lastTime: number = 0;
324
325
 
325
326
  cardUnitText: string = "";
@@ -358,6 +359,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
358
359
  listDDDW: IUserLiteResponse[] = [];
359
360
  listDLDW: IUserLiteResponse[] = [];
360
361
  listPGDW: IMyoaPGDWResponse[] = []; // 评审审批时的评审代表
362
+ listType: TCore.IDictResponse[] = [];
361
363
 
362
364
  //虚拟字段
363
365
  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
  }