修复管理员一定要设置密码问题

This commit is contained in:
TinyAnts 2022-08-10 16:10:06 +08:00
parent b317402b5a
commit 6553129909
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ public class SystemAuthAdminParam implements Serializable {
private String nickname;
@NotEmpty(message = "密码不能为空", groups = {create.class})
@Length(min = 6, max = 32, message = "密码必须在6~32个字符内", groups = {create.class, update.class, upInfo.class})
@Length(min = 6, max = 32, message = "密码必须在6~32个字符内", groups = {create.class})
private String password;
@NotNull(message = "请选择状态", groups = {create.class, update.class})