@ningboyz/types 1.1.33 → 1.1.35
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 +29 -0
package/package.json
CHANGED
|
@@ -119,6 +119,25 @@ export interface IUserResponse extends IBaseResponse<IUserResponse[]> {
|
|
|
119
119
|
userDeptList: [];
|
|
120
120
|
userRylxList: [];
|
|
121
121
|
|
|
122
|
+
/** 入党时间 */
|
|
123
|
+
userRdrq: number;
|
|
124
|
+
/** 政治面貌 */
|
|
125
|
+
listUserZzmm: IDictResponse[];
|
|
126
|
+
/** 政治面貌 */
|
|
127
|
+
userZzmm: number;
|
|
128
|
+
/** 政治面貌 */
|
|
129
|
+
userZzmmText: string;
|
|
130
|
+
/** 学历 */
|
|
131
|
+
listUserXlzs: IDictResponse[];
|
|
132
|
+
/** 学历 */
|
|
133
|
+
userXlzs: number;
|
|
134
|
+
/** 学位 */
|
|
135
|
+
listUserXwzs: IDictResponse[];
|
|
136
|
+
/** 学位 */
|
|
137
|
+
userXwzs: number;
|
|
138
|
+
/** 学位 */
|
|
139
|
+
userXwzsText: string;
|
|
140
|
+
|
|
122
141
|
listHardware: any[];
|
|
123
142
|
listSysPartc: any[];
|
|
124
143
|
listUserDept: IDeptResponse[]; // 归属部门
|
|
@@ -257,6 +276,16 @@ export class TUserResponse extends TBaseResponse<IUserResponse[]> implements IUs
|
|
|
257
276
|
userDeptList: [] = [];
|
|
258
277
|
userRylxList: [] = [];
|
|
259
278
|
|
|
279
|
+
userRdrq: number = 0;
|
|
280
|
+
listUserZzmm: IDictResponse[] = [];
|
|
281
|
+
userZzmm: number = 0;
|
|
282
|
+
userZzmmText: string = "";
|
|
283
|
+
listUserXwzs: IDictResponse[] = [];
|
|
284
|
+
userXwzs: number = 0;
|
|
285
|
+
listUserXlzs: IDictResponse[] = [];
|
|
286
|
+
userXlzs: number = 0;
|
|
287
|
+
userXwzsText: string = "";
|
|
288
|
+
|
|
260
289
|
listGet4Dept: any[] = [];
|
|
261
290
|
listGet4Unit: any[] = [];
|
|
262
291
|
listHardware: any[] = [];
|