@ningboyz/types 1.5.142 → 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 +1 -1
- package/src/core/IUserResponse.ts +16 -0
package/package.json
CHANGED
|
@@ -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 = ""; // 性质
|