@ningboyz/types 1.2.100 → 1.2.101
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
|
@@ -25,6 +25,8 @@ export interface ICardBookResponse {
|
|
|
25
25
|
bookCode: string;
|
|
26
26
|
/** 房产证地址/土地证地址/租赁房源地址/坐落 */
|
|
27
27
|
cardZlwz: string;
|
|
28
|
+
/** 产权单位统一社会信用代码 */
|
|
29
|
+
bookUsci: string;
|
|
28
30
|
/** 房产所有人/土地使用者/承受方/承租人/权利人 */
|
|
29
31
|
bookSyr: string;
|
|
30
32
|
/** 房产证面积/土地证面积/租赁证面积/房屋建筑面积 */
|
|
@@ -84,6 +86,8 @@ export class TCardBookResponse implements ICardBookResponse {
|
|
|
84
86
|
bookCode: string = '';
|
|
85
87
|
/** 房产证地址/土地证地址/租赁房源地址/坐落 */
|
|
86
88
|
cardZlwz: string = '';
|
|
89
|
+
/** 产权单位统一社会信用代码 */
|
|
90
|
+
bookUsci: string = "";
|
|
87
91
|
/** 房产所有人/土地使用者/承受方/承租人/权利人 */
|
|
88
92
|
bookSyr: string = '';
|
|
89
93
|
/** 房产证面积/土地证面积/租赁证面积/房屋建筑面积 */
|