@ningboyz/types 1.4.12 → 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.4.12",
4
+ "version": "1.4.14",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -103,7 +103,7 @@ export interface IDataResponse {
103
103
 
104
104
  autoTbxz: number; //#保险险种
105
105
  autoTbxzText: string;
106
- /** 送审/审核时间 */
106
+ /** 送审/审核时间 */
107
107
  lastTime: number;
108
108
 
109
109
  billStat: number;
@@ -151,6 +151,10 @@ export interface IDataResponse {
151
151
  cardSyfxText: string;
152
152
  /**关联资产单号 */
153
153
  fromBillCode: string;
154
+ /**保管人 */
155
+ cardMast: number;
156
+ /**保管人 */
157
+ cardMastText: string;
154
158
  }
155
159
 
156
160
  export class TDataResponse implements IDataResponse {
@@ -286,6 +290,10 @@ export class TDataResponse implements IDataResponse {
286
290
  cardYqzt: number = 0;
287
291
  /**仪器状态名称 */
288
292
  cardYqztText: string = "";
293
+ /**保管人 */
294
+ cardMast: number = 0;
295
+ /**保管人 */
296
+ cardMastText: string = "";
289
297
 
290
298
  static toFlowData(card: TDataResponse): TFlowDataResponse {
291
299
  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