@ningboyz/types 1.5.141 → 1.5.143
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
|
@@ -133,6 +133,11 @@ export interface ICardRoomResponse {
|
|
|
133
133
|
roomStat: number;
|
|
134
134
|
/** 删除方式(0:出售、1:拆迁、2:拆违、3:划拨) */
|
|
135
135
|
roomScfs: number;
|
|
136
|
+
/** 预计交付时间 */
|
|
137
|
+
roomYjjfsj: number;
|
|
138
|
+
|
|
139
|
+
/** 预计交付时间 */
|
|
140
|
+
roomYjjfsj: number;
|
|
136
141
|
|
|
137
142
|
thirdApp: string;
|
|
138
143
|
|
|
@@ -272,6 +277,10 @@ export class TCardRoomResponse implements ICardRoomResponse {
|
|
|
272
277
|
roomStat: number = 1;
|
|
273
278
|
/** 删除方式:0:出售、1:拆迁、2:拆违、3:划拨 */
|
|
274
279
|
roomScfs: number = -1;
|
|
280
|
+
roomYjjfsj: number = 0;
|
|
281
|
+
|
|
282
|
+
/** 预计交付时间 */
|
|
283
|
+
roomYjjfsj: number = 0;
|
|
275
284
|
|
|
276
285
|
thirdApp: string = "";
|
|
277
286
|
|
|
@@ -152,6 +152,16 @@ export interface IUserResponse extends IBaseResponse<IUserResponse> {
|
|
|
152
152
|
usrEmail: string;
|
|
153
153
|
/** 附件 */
|
|
154
154
|
listPath: IPathResponse[];
|
|
155
|
+
/** 警种 */
|
|
156
|
+
workType: number;
|
|
157
|
+
/** 警衔级 */
|
|
158
|
+
rankLevl: number;
|
|
159
|
+
/** 警衔号 */
|
|
160
|
+
rankCode: number;
|
|
161
|
+
/** 供应性质 */
|
|
162
|
+
supplyBy: number;
|
|
163
|
+
/** 在岗状态 */
|
|
164
|
+
workStat: number;
|
|
155
165
|
workTypeText: string;
|
|
156
166
|
rankLevlText: string;
|
|
157
167
|
rankCodeText: string;
|
|
@@ -272,6 +282,12 @@ export class TUserResponse extends TBaseResponse<IUserResponse> implements IUser
|
|
|
272
282
|
nodeName: string = "";
|
|
273
283
|
nickName: string = "";
|
|
274
284
|
|
|
285
|
+
workType: number = 0;
|
|
286
|
+
rankLevl: number = 0;
|
|
287
|
+
rankCode: number = 0;
|
|
288
|
+
supplyBy: number = 0;
|
|
289
|
+
workStat: number = 0;
|
|
290
|
+
|
|
275
291
|
creditOf: number = 0; // 信用等级
|
|
276
292
|
creditBy: string = "";
|
|
277
293
|
wbField0: string = ""; // 性质
|