@ningboyz/types 1.6.165 → 1.6.166

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.6.165",
4
+ "version": "1.6.166",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -82,6 +82,15 @@ export interface ICardFwczResponse {
82
82
  /** 底价确定方式.名称 */
83
83
  fwczQdfsText: string;
84
84
 
85
+ /** 房产名称 */
86
+ cardName: string;
87
+ /** 房间编号 */
88
+ roomCode: string;
89
+ /** 房间地址 */
90
+ roomAddr: string;
91
+ /** 旧系统房源编号 */
92
+ code4Old: string;
93
+
85
94
  thirdApp: string;
86
95
 
87
96
  lastDate: number;
@@ -178,6 +187,15 @@ export class TCardFwczResponse implements ICardFwczResponse {
178
187
  /** 底价确定方式.名称 */
179
188
  fwczQdfsText: string = "";
180
189
 
190
+ /** 房产名称 */
191
+ cardName: string = "";
192
+ /** 房间编号 */
193
+ roomCode: string = "";
194
+ /** 房间地址 */
195
+ roomAddr: string = "";
196
+ /** 旧系统房源编号 */
197
+ code4Old: string = "";
198
+
181
199
  thirdApp: string = "";
182
200
 
183
201
  lastDate: number = 0;
@@ -36,6 +36,15 @@ export interface ICardHyhbResponse {
36
36
  userSize: number;
37
37
  hyhbMemo: string;
38
38
 
39
+ /** 房产名称 */
40
+ cardName: string;
41
+ /** 房间编号 */
42
+ roomCode: string;
43
+ /** 房间地址 */
44
+ roomAddr: string;
45
+ /** 旧系统房源编号 */
46
+ code4Old: string;
47
+
39
48
  thirdApp: string;
40
49
 
41
50
  /** 单位编码 */
@@ -82,6 +91,15 @@ export class TCardHyhbResponse implements ICardHyhbResponse {
82
91
  userSize: number = 0;
83
92
  hyhbMemo: string = "";
84
93
 
94
+ /** 房产名称 */
95
+ cardName: string = "";
96
+ /** 房间编号 */
97
+ roomCode: string = "";
98
+ /** 房间地址 */
99
+ roomAddr: string = "";
100
+ /** 旧系统房源编号 */
101
+ code4Old: string = "";
102
+
85
103
  thirdApp: string = "";
86
104
 
87
105
  /** 单位编码 */