【修改】sysUser中添加IAM中多余的字段
This commit is contained in:
@@ -107,6 +107,9 @@ public class SysUser implements Serializable {
|
||||
|
||||
/**
|
||||
* 状态(1:正常 2:冻结 )
|
||||
* 对应 IAM的 poststatus
|
||||
* 所有IAM的poststatus = 1的数据,则此字段为1
|
||||
* 其他数据此字段都为2
|
||||
*/
|
||||
@Excel(name = "状态", width = 15,dicCode="user_status")
|
||||
@Dict(dicCode = "user_status")
|
||||
@@ -178,6 +181,86 @@ public class SysUser implements Serializable {
|
||||
|
||||
// 如下为IAM新加数据
|
||||
|
||||
/**
|
||||
* 人员类型
|
||||
* 000正式员工、002外部用户、001劳务工等
|
||||
*/
|
||||
private String typeId;
|
||||
|
||||
/**
|
||||
* 岗位
|
||||
*/
|
||||
private String post;
|
||||
|
||||
/**
|
||||
* 职务级别
|
||||
*/
|
||||
private String dutylevelid;
|
||||
|
||||
/**
|
||||
* 族
|
||||
*/
|
||||
private String race;
|
||||
|
||||
/**
|
||||
* 岗位序列
|
||||
*/
|
||||
private String postSequence;
|
||||
|
||||
/**
|
||||
* 专业技术职务(职称)
|
||||
*/
|
||||
private String technicalPosition;
|
||||
|
||||
/**
|
||||
* 直接上级
|
||||
*/
|
||||
private String directLeadership;
|
||||
|
||||
/**
|
||||
* 岗位状态
|
||||
*/
|
||||
private String postStatus;
|
||||
|
||||
/**
|
||||
* 身份证号码
|
||||
*/
|
||||
private String idNumber;
|
||||
|
||||
/**
|
||||
* 学历
|
||||
*/
|
||||
private String education;
|
||||
|
||||
/**
|
||||
* 借调前所属部门
|
||||
*/
|
||||
private String departmentBeforeTransfer;
|
||||
|
||||
/**
|
||||
* 劳务派遣单位编码
|
||||
*/
|
||||
private String laborDispatchCode;
|
||||
|
||||
/**
|
||||
* 劳务派遣单位名称
|
||||
*/
|
||||
private String laborDispatchName;
|
||||
|
||||
/**
|
||||
* 职业资格
|
||||
*/
|
||||
private String professionalQualification;
|
||||
|
||||
/**
|
||||
* 职业资格等级
|
||||
*/
|
||||
private String professionalLevel;
|
||||
|
||||
/**
|
||||
* 进入集团时间
|
||||
*/
|
||||
private String entryTime;
|
||||
|
||||
/**
|
||||
* 拼接真实姓名和工号形成唯一的用户信息可用户查看
|
||||
|
||||
Reference in New Issue
Block a user