修复管理员编辑bug
This commit is contained in:
parent
798d12c16f
commit
ca9a251176
|
|
@ -34,7 +34,6 @@ public class SystemAdminUpdateValidate implements Serializable {
|
||||||
@Length(min = 2, max = 30, message = "昵称必须在2~30个字符内")
|
@Length(min = 2, max = 30, message = "昵称必须在2~30个字符内")
|
||||||
private String nickname;
|
private String nickname;
|
||||||
|
|
||||||
@Length(min = 6, max = 32, message = "密码必须在6~32个字符内")
|
|
||||||
private String password;
|
private String password;
|
||||||
|
|
||||||
@NotNull(message = "请选择是否禁用")
|
@NotNull(message = "请选择是否禁用")
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@ public class SystemAuthAdminDetailVo implements Serializable {
|
||||||
private Integer id; // 主键
|
private Integer id; // 主键
|
||||||
private Integer deptId; // 部门ID
|
private Integer deptId; // 部门ID
|
||||||
private Integer postId; // 岗位ID
|
private Integer postId; // 岗位ID
|
||||||
|
private Integer role; // 角色ID
|
||||||
private String username; // 账号
|
private String username; // 账号
|
||||||
private String nickname; // 昵称
|
private String nickname; // 昵称
|
||||||
private String avatar; // 头像
|
private String avatar; // 头像
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue