提交 343ebe13 编写于 作者: M macro

Update UpdateAdminPasswordParam.java

上级 130bfa5a
......@@ -13,13 +13,13 @@ import javax.validation.constraints.NotEmpty;
@Getter
@Setter
public class UpdateAdminPasswordParam {
@NotEmpty
@ApiModelProperty(value = "用户名", required = true)
@NotEmpty(message = "用户名不能为空")
private String username;
@NotEmpty
@ApiModelProperty(value = "旧密码", required = true)
@NotEmpty(message = "旧密码不能为空")
private String oldPassword;
@NotEmpty
@ApiModelProperty(value = "新密码", required = true)
@NotEmpty(message = "新密码不能为空")
private String newPassword;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册