From 186d9b6460175e54cb86aa9f22ee36d77adffc20 Mon Sep 17 00:00:00 2001 From: zer0Black <694429613@qq.com> Date: Sat, 30 Sep 2023 16:45:34 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E4=BF=AE=E6=94=B9=E3=80=91sysUser?= =?UTF-8?q?=E4=B8=AD=E6=B7=BB=E5=8A=A0IAM=E4=B8=AD=E5=A4=9A=E4=BD=99?= =?UTF-8?q?=E7=9A=84=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jero/modules/system/entity/SysUser.java | 83 +++++++++++++++++++ 1 file changed, 83 insertions(+) diff --git a/laws-module-system/src/main/java/com/jero/modules/system/entity/SysUser.java b/laws-module-system/src/main/java/com/jero/modules/system/entity/SysUser.java index 721a54c0..3312e84f 100644 --- a/laws-module-system/src/main/java/com/jero/modules/system/entity/SysUser.java +++ b/laws-module-system/src/main/java/com/jero/modules/system/entity/SysUser.java @@ -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; /** * 拼接真实姓名和工号形成唯一的用户信息可用户查看