@ningboyz/types 1.5.192 → 1.5.193
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
|
@@ -372,6 +372,10 @@ export interface ICardMainResponse {
|
|
|
372
372
|
cardZfzq: number;
|
|
373
373
|
/** 政府债券(文本) */
|
|
374
374
|
cardZfzqText: string;
|
|
375
|
+
/** 权属人性质(字典) */
|
|
376
|
+
cardQsxz: number;
|
|
377
|
+
/** 权属人性质(文本) */
|
|
378
|
+
cardQsxzText: string;
|
|
375
379
|
|
|
376
380
|
/** 管理状态(1:在管;0:历史) */
|
|
377
381
|
cardGlzt: number;
|
|
@@ -680,6 +684,8 @@ export class TCardMainResponse implements ICardMainResponse {
|
|
|
680
684
|
cardFclbText: string = "";
|
|
681
685
|
cardZfzq: number = 0;
|
|
682
686
|
cardZfzqText: string = "";
|
|
687
|
+
cardQsxz: number = 0;
|
|
688
|
+
cardQsxzText: string = "";
|
|
683
689
|
|
|
684
690
|
cardGlzt: number = 1;
|
|
685
691
|
|
|
@@ -136,6 +136,8 @@ export interface ICardRoomResponse {
|
|
|
136
136
|
|
|
137
137
|
/** 预计交付时间 */
|
|
138
138
|
roomYjjfsj: number;
|
|
139
|
+
/** 空置原因 */
|
|
140
|
+
reasonBy: string;
|
|
139
141
|
|
|
140
142
|
code4Old: string;
|
|
141
143
|
|
|
@@ -280,6 +282,8 @@ export class TCardRoomResponse implements ICardRoomResponse {
|
|
|
280
282
|
|
|
281
283
|
/** 预计交付时间 */
|
|
282
284
|
roomYjjfsj: number = 0;
|
|
285
|
+
/** 空置原因 */
|
|
286
|
+
reasonBy: string = "";
|
|
283
287
|
|
|
284
288
|
code4Old: string = "";
|
|
285
289
|
|
|
@@ -341,7 +341,9 @@ export interface IYzhtMainResponse {
|
|
|
341
341
|
|
|
342
342
|
/** 房产名称 */
|
|
343
343
|
cardName: string;
|
|
344
|
-
/**
|
|
344
|
+
/** 房间编号 */
|
|
345
|
+
roomCode: string;
|
|
346
|
+
/** 房间地址 */
|
|
345
347
|
roomAddr: string;
|
|
346
348
|
/** 客户名称 */
|
|
347
349
|
d2dwText: string;
|
|
@@ -733,7 +735,9 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
|
|
|
733
735
|
|
|
734
736
|
/** 房产名称 */
|
|
735
737
|
cardName: string = "";
|
|
736
|
-
/**
|
|
738
|
+
/** 房间编号 */
|
|
739
|
+
roomCode: string = "";
|
|
740
|
+
/** 房间地址 */
|
|
737
741
|
roomAddr: string = "";
|
|
738
742
|
/** 客户名称 */
|
|
739
743
|
d2dwText: string = "";
|