fix 修复密码校验误删字段
This commit is contained in:
parent
4f99487d24
commit
2bc7171abd
@ -56,7 +56,7 @@ social.source.not.blank=Social login platform [source] cannot be blank
|
|||||||
social.code.not.blank=Social login platform [code] cannot be blank
|
social.code.not.blank=Social login platform [code] cannot be blank
|
||||||
social.state.not.blank=Social login platform [state] cannot be blank
|
social.state.not.blank=Social login platform [state] cannot be blank
|
||||||
##租户
|
##租户
|
||||||
tenant.number.not.blank=Password must be at least 8 characters long and include uppercase letters, lowercase letters, numbers, and special characters.
|
tenant.number.not.blank=Tenant number cannot be blank
|
||||||
tenant.not.exists=Sorry, your tenant does not exist. Please contact the administrator
|
tenant.not.exists=Sorry, your tenant does not exist. Please contact the administrator
|
||||||
tenant.blocked=Sorry, your tenant is disabled. Please contact the administrator
|
tenant.blocked=Sorry, your tenant is disabled. Please contact the administrator
|
||||||
tenant.expired=Sorry, your tenant has expired. Please contact the administrator.
|
tenant.expired=Sorry, your tenant has expired. Please contact the administrator.
|
||||||
|
@ -62,7 +62,7 @@ public class SysTenantBo extends BaseEntity {
|
|||||||
* 密码(创建系统用户)
|
* 密码(创建系统用户)
|
||||||
*/
|
*/
|
||||||
@NotBlank(message = "密码不能为空", groups = { AddGroup.class })
|
@NotBlank(message = "密码不能为空", groups = { AddGroup.class })
|
||||||
// @Pattern(regexp = RegexConstants.PASSWORD, message = "{user.password.format.valid}")
|
// @Pattern(regexp = RegexConstants.PASSWORD, message = "{user.password.format.valid}", groups = { AddGroup.class })
|
||||||
private String password;
|
private String password;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user