调整密码输入不校验长度

This commit is contained in:
chenbowen
2025-12-04 19:22:41 +08:00
parent 25978ad4b9
commit a0b51edd9b

View File

@@ -28,7 +28,7 @@ public class AuthLoginReqVO extends CaptchaVerificationReqVO {
@Schema(description = "密码", requiredMode = Schema.RequiredMode.REQUIRED, example = "buzhidao")
@NotEmpty(message = "密码不能为空")
@Length(min = 4, max = 16, message = "密码长度为 4-16 位")
// @Length(min = 4, max = 16, message = "密码长度为 4-16 位")
private String password;
// ========== 绑定社交登录时,需要传递如下参数 ==========