小组用户角色表model添加字段isUser 是否为隐藏用户角色

This commit is contained in:
anhc 2022-07-04 15:48:50 +08:00
parent 3d3c42122b
commit 1c7dd2743c

View File

@ -26,6 +26,7 @@ public final class CoeCooperationRoleModel extends ModelBean {
public static final String CREATETIME = "CREATETIME";
public static final String UPDATEUSER = "UPDATEUSER";
public static final String UPDATETIME = "UPDATETIME";
public static final String ISUSER = "ISUSER";
private String id;
private String teamId;
@ -39,6 +40,7 @@ public final class CoeCooperationRoleModel extends ModelBean {
private Timestamp createTime;
private String updateUser;
private Timestamp updateTime;
private int isUser;
public CoeCooperationRoleModel() {
}
@ -58,6 +60,22 @@ public final class CoeCooperationRoleModel extends ModelBean {
this.updateTime = updateTime;
}
public CoeCooperationRoleModel(String id, String teamId, String roleName, String roleDesc, int roleType, String appPerm, String actionPerm, String dataPerm, String createUser, Timestamp createTime, String updateUser, Timestamp updateTime, int isUser) {
this.id = id;
this.teamId = teamId;
this.roleName = roleName;
this.roleDesc = roleDesc;
this.roleType = roleType;
this.appPerm = appPerm;
this.actionPerm = actionPerm;
this.dataPerm = dataPerm;
this.createUser = createUser;
this.createTime = createTime;
this.updateUser = updateUser;
this.updateTime = updateTime;
this.isUser = isUser;
}
public String getId() {
return id;
}
@ -157,4 +175,12 @@ public final class CoeCooperationRoleModel extends ModelBean {
private String null2Blank(String str) {
return str == null ? "" : str;
}
public int getIsUser() {
return isUser;
}
public void setIsUser(int isUser) {
this.isUser = isUser;
}
}