@ningboyz/types 1.3.149 → 1.3.151

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.149",
4
+ "version": "1.3.151",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -20,7 +20,10 @@ export interface IHznkFydwDeptResponse {
20
20
  deptMain: number;
21
21
  deptName: string;
22
22
  totalVal: number;
23
+ /**实际分值 */
23
24
  inputVal: number;
25
+ /**实际分值文本 */
26
+ inputTxt: string;
24
27
  }
25
28
 
26
29
  export class THznkFydwDeptResponse implements IHznkFydwDeptResponse {
@@ -46,4 +49,5 @@ export class THznkFydwDeptResponse implements IHznkFydwDeptResponse {
46
49
  deptName: string = "";
47
50
  totalVal: number = 0;
48
51
  inputVal: number = 0;
52
+ inputTxt: string = "";
49
53
  }
@@ -63,6 +63,8 @@ export interface IHznkNoteResponse {
63
63
  lastTime: number;
64
64
  /**实际赋分 */
65
65
  inputVal: number;
66
+ /**实际赋分文本 */
67
+ inputTxt: string;
66
68
 
67
69
  /**附件 */
68
70
  listPath: TCore.IPathResponse[];
@@ -127,6 +129,7 @@ export class THznkNoteResponse implements IHznkNoteResponse {
127
129
  /** 送审/审核时间 */
128
130
  lastTime: number = 0;
129
131
  inputVal: number = 0;
132
+ inputTxt: string = "";
130
133
 
131
134
  listPath: TCore.IPathResponse[] = [];
132
135
  listFrom: THznk.IHznkMainResponse[] = [];
@@ -1,3 +1,5 @@
1
+ import { IJapzItemResponse } from "./IJapzItemResponse";
2
+
1
3
  export interface IJapzK8kmResponse {
2
4
  whoBuild: number;
3
5
  userIndx: number;
@@ -35,6 +37,9 @@ export interface IJapzK8kmResponse {
35
37
  k8kmKmmc: string;
36
38
  /** 样品分类 */
37
39
  k0kmText: string;
40
+
41
+ /**检测项目 */
42
+ listItem: IJapzItemResponse[];
38
43
  }
39
44
 
40
45
  export class TJapzK8kmResponse implements IJapzK8kmResponse {
@@ -68,4 +73,7 @@ export class TJapzK8kmResponse implements IJapzK8kmResponse {
68
73
  k8kmKmbm: string = "";
69
74
  k8kmKmmc: string = "";
70
75
  k0kmText: string = "";
76
+
77
+ /**检测项目 */
78
+ listItem: IJapzItemResponse[] = [];
71
79
  }