Commit 498e3cd0 by 穆龙飞

modify:修改对象字段属性

parent 885e9e4f
Pipeline #43753 passed with stages
in 1 minute 44 seconds
...@@ -16,16 +16,16 @@ public class OrgPos { ...@@ -16,16 +16,16 @@ public class OrgPos {
private Integer level; private Integer level;
//部门id //部门id
private Integer orgPosId; private Long orgPosId;
//部门名称 //部门名称
private String orgPosName; private String orgPosName;
//上一级部门id //上一级部门id
private Integer parentOrgPosId; private Long parentOrgPosId;
//部门结构类型,0-职能部门,1-项目部门 //部门结构类型,0-职能部门,1-项目部门
private Integer posStructType; private Integer posStructType;
private Integer rootOrgPosId; private Long rootOrgPosId;
} }
...@@ -17,7 +17,7 @@ public class SecondaryDepartments { ...@@ -17,7 +17,7 @@ public class SecondaryDepartments {
private List<leaderChain> leaderChainList; private List<leaderChain> leaderChainList;
//用户所属部门id //用户所属部门id
private Integer orgPosId; private Long orgPosId;
//所属部门的级别 //所属部门的级别
private Integer orgPosLevel; private Integer orgPosLevel;
...@@ -29,7 +29,7 @@ public class SecondaryDepartments { ...@@ -29,7 +29,7 @@ public class SecondaryDepartments {
private String uid; private String uid;
//用户ID //用户ID
private Integer userId; private Long userId;
//用户姓名 //用户姓名
private String userName; private String userName;
......
...@@ -33,7 +33,7 @@ public class leaderChain { ...@@ -33,7 +33,7 @@ public class leaderChain {
private OrgPos orgPos; private OrgPos orgPos;
//所属部门 //所属部门
private Integer orgPosId; private Long orgPosId;
//所属部门级别 //所属部门级别
private Integer orgPosLevel; private Integer orgPosLevel;
...@@ -48,7 +48,7 @@ public class leaderChain { ...@@ -48,7 +48,7 @@ public class leaderChain {
private String uid; private String uid;
//用户唯一id //用户唯一id
private Integer userId; private Long userId;
//是否为虚拟用户 - 产品下没有该用户但是产品关联的组织身份包含该用户 //是否为虚拟用户 - 产品下没有该用户但是产品关联的组织身份包含该用户
private boolean virtual; private boolean virtual;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment