修改密码验证

This commit is contained in:
TinyAnts 2022-05-07 10:03:09 +08:00
parent bad2680050
commit a24b5cf07a
1 changed files with 1 additions and 1 deletions

View File

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