@ningboyz/types 1.3.192 → 1.3.194

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.192",
4
+ "version": "1.3.194",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -412,7 +412,11 @@ export interface ICardMainResponse {
412
412
  lastMemo: string;
413
413
  userName: string;
414
414
  userGUID: string;
415
-
415
+
416
+ // 小区
417
+ roomCode:string;
418
+ // 地址
419
+ roomAddr:string;
416
420
  /**
417
421
  * 前端字段
418
422
  */
@@ -686,7 +690,9 @@ export class TCardMainResponse implements ICardMainResponse {
686
690
 
687
691
  wContact: string = ""; // 联系人
688
692
  dContact: string = ""; // 联系电话
689
-
693
+
694
+ roomCode:string = "";
695
+ roomAddr:string = "";
690
696
  /** 二维码 */
691
697
  cardQrde: string = "";
692
698
 
@@ -85,6 +85,12 @@ export interface ICardRoomResponse {
85
85
  cardYnss: number;
86
86
  /** 是否危房 */
87
87
  cardYnwf: number;
88
+ /** 是否用于公共服务设施 */
89
+ isCommon: number;
90
+ /**实际使用单位 */
91
+ sydwText:string;
92
+ /**用途 */
93
+ roomUses:number;
88
94
  }
89
95
 
90
96
  export class TCardRoomResponse implements ICardRoomResponse {
@@ -173,4 +179,10 @@ export class TCardRoomResponse implements ICardRoomResponse {
173
179
  cardYnss: number = 0;
174
180
  /** 是否危房 */
175
181
  cardYnwf: number = 0;
182
+ /** 是否用于公共服务设施 */
183
+ isCommon: number = 0;
184
+ /**实际使用单位 */
185
+ sydwText:string = "";
186
+ /**用途 */
187
+ roomUses:number = 0;
176
188
  }
@@ -206,6 +206,8 @@ export interface IMyoaMainResponse {
206
206
  sField03: string;
207
207
  sField04: string;
208
208
  sField05: string;
209
+ // 是否骑缝章
210
+ dzyzQife: number;
209
211
  }
210
212
 
211
213
  export class TMyoaMainResponse implements IMyoaMainResponse {
@@ -389,7 +391,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
389
391
  sField03: string = "";
390
392
  sField04: string = "";
391
393
  sField05: string = "";
392
-
394
+ dzyzQife: number = 0;
393
395
  constructor(card: keyof TMyoaMainResponse | object) {
394
396
  if (card) {
395
397
  _.merge(this, _.pick(card, Object.keys(this)));
@@ -39,6 +39,7 @@ export interface IWldyPageResponse {
39
39
  pageMode: number;
40
40
  loadType: number;
41
41
  sysPathc: number;
42
+ path4URL: string;
42
43
  copyMode: number;
43
44
  copyFrom: number;
44
45
  pageUses: string;
@@ -85,6 +86,7 @@ export class TWldyPageResponse implements IWldyPageResponse {
85
86
  pageMode: number = 0;
86
87
  loadType: number = 0;
87
88
  sysPathc: number = 0;
89
+ path4URL: string = "";
88
90
  copyMode: number = 0;
89
91
  copyFrom: number = 0;
90
92
  pageUses: string = "";
@@ -192,6 +192,22 @@ export interface IZbzdMainResponse {
192
192
  * 收款单位联系人电话
193
193
  */
194
194
  dContact: string;
195
+ /**
196
+ * 调增单位.标识
197
+ */
198
+ unitFrom: number;
199
+ /**
200
+ * 调增单位.名称
201
+ */
202
+ unitFromText: string;
203
+ /**
204
+ * 业务科室.标识
205
+ */
206
+ deptFrom: number;
207
+ /**
208
+ * 业务科室.名称
209
+ */
210
+ deptFromText: string;
195
211
  /**
196
212
  * 指标分录
197
213
  */
@@ -318,6 +334,10 @@ export class TZbzdMainResponse implements IZbzdMainResponse {
318
334
  acnoKhyh: string = "";
319
335
  wContact: string = "";
320
336
  dContact: string = "";
337
+ unitFrom: number = 0;
338
+ unitFromText: string = "";
339
+ deptFrom: number = 0;
340
+ deptFromText: string = "";
321
341
  sourceDw: string = "";
322
342
 
323
343
  listZBFL: IZbzbZbflResponse[] = [];