@ningboyz/types 1.1.32 → 1.1.34
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
|
@@ -80,6 +80,15 @@ export const CONST_SYS_TYPEN_JSFS = "结算方式";
|
|
|
80
80
|
export const CONST_SYS_TYPEN_FLOW_TYPE = "审核流程-退回类别";
|
|
81
81
|
export const CONST_SYS_TYPEN_FLOW_WILL = "审核流程-流程标记";
|
|
82
82
|
|
|
83
|
+
export const CONST_SYS_TYPEU_RYGL_XB = "人员管理-性别";
|
|
84
|
+
export const CONST_SYS_TYPEU_RYGL_XL = "人员管理-学历";
|
|
85
|
+
export const CONST_SYS_TYPEU_RYGL_XW = "人员管理-学位";
|
|
86
|
+
export const CONST_SYS_TYPEU_RYGL_ZC = "人员管理-职称";
|
|
87
|
+
export const CONST_SYS_TYPEU_RYGL_ZJDJ = "人员管理-专技等级";
|
|
88
|
+
export const CONST_SYS_TYPEU_RYGL_ZYDJ = "人员管理-职员等级";
|
|
89
|
+
export const CONST_SYS_TYPEU_RYGL_ZYJB = "人员管理-职员级别";
|
|
90
|
+
export const CONST_SYS_TYPEU_RYGL_ZZMM = "人员管理-政治面貌";
|
|
91
|
+
|
|
83
92
|
export const CONST_SYS_TYPEU_CLGL_CLYT = "车辆管理-车辆用途";
|
|
84
93
|
export const CONST_SYS_TYPEU_CLGL_CLLX = "车辆管理-车辆类型";
|
|
85
94
|
export const CONST_SYS_TYPEU_CLGL_QCLX = "车辆管理-汽车类型";
|
|
@@ -119,6 +119,19 @@ export interface IUserResponse extends IBaseResponse<IUserResponse[]> {
|
|
|
119
119
|
userDeptList: [];
|
|
120
120
|
userRylxList: [];
|
|
121
121
|
|
|
122
|
+
/** 入党时间 */
|
|
123
|
+
userRdrq: number;
|
|
124
|
+
/** 政治面貌 */
|
|
125
|
+
userZzmm: number;
|
|
126
|
+
/** 政治面貌 */
|
|
127
|
+
userZzmmText: string;
|
|
128
|
+
/** 学位 */
|
|
129
|
+
listUserXwzs: IDictResponse[];
|
|
130
|
+
/** 学位 */
|
|
131
|
+
userXwzs: number;
|
|
132
|
+
/** 学位 */
|
|
133
|
+
userXwzsText: string;
|
|
134
|
+
|
|
122
135
|
listHardware: any[];
|
|
123
136
|
listSysPartc: any[];
|
|
124
137
|
listUserDept: IDeptResponse[]; // 归属部门
|
|
@@ -257,6 +270,13 @@ export class TUserResponse extends TBaseResponse<IUserResponse[]> implements IUs
|
|
|
257
270
|
userDeptList: [] = [];
|
|
258
271
|
userRylxList: [] = [];
|
|
259
272
|
|
|
273
|
+
userRdrq: number = 0;
|
|
274
|
+
userZzmm: number = 0;
|
|
275
|
+
userZzmmText: string = "";
|
|
276
|
+
listUserXwzs: IDictResponse[] = [];
|
|
277
|
+
userXwzs: number = 0;
|
|
278
|
+
userXwzsText: string = "";
|
|
279
|
+
|
|
260
280
|
listGet4Dept: any[] = [];
|
|
261
281
|
listGet4Unit: any[] = [];
|
|
262
282
|
listHardware: any[] = [];
|