@ningboyz/types 1.5.104 → 1.5.106

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.5.104",
4
+ "version": "1.5.106",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -117,6 +117,18 @@ export interface ICardRoomResponse {
117
117
  /** 实际是否用于公共服务设施 */
118
118
  asCommon: number;
119
119
 
120
+ /** 行业分类.标识 */
121
+ hyflMain: number;
122
+ /** 行业分类.名称 */
123
+ hyflName: string;
124
+ /** 行业分类.编码 */
125
+ hyflCode: string;
126
+
127
+ /** 闲置状态.标识 */
128
+ xzztMain: number;
129
+ /** 闲置状态.名称 */
130
+ xzztText: string;
131
+
120
132
  /** 出租状态:1:已出租;0:未出租;-1:初始化 */
121
133
  roomStat: number;
122
134
 
@@ -242,6 +254,18 @@ export class TCardRoomResponse implements ICardRoomResponse {
242
254
  /** 实际是否用于公共服务设施 */
243
255
  asCommon: number = 0;
244
256
 
257
+ /** 行业分类.标识 */
258
+ hyflMain: number = 0;
259
+ /** 行业分类.名称 */
260
+ hyflName: string = "";
261
+ /** 行业分类.编码 */
262
+ hyflCode: string = "";
263
+
264
+ /** 闲置状态.标识 */
265
+ xzztMain: number = 0;
266
+ /** 闲置状态.名称 */
267
+ xzztText: string = "";
268
+
245
269
  /** 出租状态:1:已出租;0:未出租;-1:初始化 */
246
270
  roomStat: number = -1;
247
271
 
@@ -78,6 +78,10 @@ export interface IHznjZbjgItemResponse {
78
78
  minoJcsl: number;
79
79
  /**到样日期 */
80
80
  itemDyrq: number;
81
+ /**收样类型 */
82
+ dataType: number;
83
+ /**委托日期 */
84
+ wtrqDate: number;
81
85
  }
82
86
 
83
87
  export class THznjZbjgItemResponse implements IHznjZbjgItemResponse {
@@ -142,6 +146,10 @@ export class THznjZbjgItemResponse implements IHznjZbjgItemResponse {
142
146
  minoCode: string = "";
143
147
  /**到样日期 */
144
148
  itemDyrq: number = 0;
149
+ /**收样类型 */
150
+ dataType: number = 0;
151
+ /**委托日期 */
152
+ wtrqDate: number = 0;
145
153
 
146
154
  constructor(data: Partial<IHznjZbjgItemResponse> = {}) {
147
155
  if (data) {
@@ -74,6 +74,8 @@ export interface INotiMainResponse {
74
74
  * 是否归档:0:未归档;1:已归档
75
75
  */
76
76
  diskStat: number;
77
+ diskDate: number;
78
+ diskTime: number;
77
79
 
78
80
  /** 流程节点判断 */
79
81
  flowVal1: number;
@@ -324,6 +326,8 @@ export class TNotiMainResponse implements INotiMainResponse {
324
326
  * 是否归档:0:未归档;1:已归档
325
327
  */
326
328
  diskStat: number = 0;
329
+ diskDate: number = 0;
330
+ diskTime: number = 0;
327
331
 
328
332
  /** 流程节点判断 */
329
333
  flowVal1: number = -1;