@ningboyz/types 1.6.165 → 1.6.167
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
|
@@ -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
|
/** 单位编码 */
|
|
@@ -70,8 +70,11 @@ export interface ISysMenuWithCoreResponse {
|
|
|
70
70
|
billItem: string;
|
|
71
71
|
/** 参与事前报备 */
|
|
72
72
|
todoLock: number;
|
|
73
|
-
|
|
73
|
+
listCnfgText: string;
|
|
74
|
+
k0kmKmmc: string;
|
|
74
75
|
menuParaConv: ISysMenuWithCoreResponseMenuPara;
|
|
76
|
+
|
|
77
|
+
pathType: IDictResponse[];
|
|
75
78
|
wldyPage: IWldyPageResponse[];
|
|
76
79
|
listGAMS: IGamsCnfgResponse[];
|
|
77
80
|
}
|
|
@@ -102,7 +105,6 @@ export class TSysMenuWithCoreResponse implements ISysMenuWithCoreResponse {
|
|
|
102
105
|
createAt: number = 0;
|
|
103
106
|
updateBy: string = "";
|
|
104
107
|
updateAt: number = 0;
|
|
105
|
-
|
|
106
108
|
deleteBy: string = "";
|
|
107
109
|
deleteAt: number = 0;
|
|
108
110
|
queuesBy: number = 0;
|
|
@@ -135,8 +137,11 @@ export class TSysMenuWithCoreResponse implements ISysMenuWithCoreResponse {
|
|
|
135
137
|
billTabl: string = "";
|
|
136
138
|
billItem: string = "";
|
|
137
139
|
todoLock: number = 0;
|
|
138
|
-
|
|
140
|
+
listCnfgText: string = "";
|
|
141
|
+
k0kmKmmc: string = "";
|
|
139
142
|
menuParaConv: ISysMenuWithCoreResponseMenuPara = new TSysMenuWithCoreResponseMenuPara(); // menuPara转换成对象
|
|
143
|
+
|
|
144
|
+
pathType: IDictResponse[] = [];
|
|
140
145
|
wldyPage: IWldyPageResponse[] = [];
|
|
141
146
|
listGAMS: IGamsCnfgResponse[] = [];
|
|
142
147
|
|