@ningboyz/types 1.3.69 → 1.3.71

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.69",
4
+ "version": "1.3.71",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -58,6 +58,8 @@ export interface IHznjNotiResponse {
58
58
  notiMemo: string;
59
59
  /**子单数量 */
60
60
  billSize: number;
61
+ /**项目ID */
62
+ hznkMain: number;
61
63
 
62
64
  coverURL: string;
63
65
  touchURL: string;
@@ -130,6 +132,7 @@ export class THznjNotiResponse implements IHznjNotiResponse {
130
132
  notiUses: string = "";
131
133
  notiMemo: string = "";
132
134
  billSize: number = 0;
135
+ hznkMain: number = 0;
133
136
 
134
137
  coverURL: string = "";
135
138
  touchURL: string = "";
@@ -67,6 +67,11 @@ export interface IHznjZbjgItemResponse {
67
67
  xmsyCode: string;
68
68
  /**制备样品编号 */
69
69
  fromItemCode: string;
70
+
71
+ /**正样结存数量 */
72
+ mainJcsl: number;
73
+ /**副样结存数量 */
74
+ minoJcsl: number;
70
75
  }
71
76
 
72
77
  export class THznjZbjgItemResponse implements IHznjZbjgItemResponse {
@@ -120,6 +125,11 @@ export class THznjZbjgItemResponse implements IHznjZbjgItemResponse {
120
125
  xmsyCode: string = "";
121
126
  fromItemCode: string = "";
122
127
 
128
+ /**正样结存数量 */
129
+ mainJcsl: number = 0;
130
+ /**副样结存数量 */
131
+ minoJcsl: number = 0;
132
+
123
133
  constructor(data: Partial<IHznjZbjgItemResponse> = {}) {
124
134
  if (data) {
125
135
  _.merge(this, _.pick(data, Object.keys(this)));