| | |
| | | @ApiModel(value = "ForgetPwdDto", description = "忘记/修改密码参数接收类") |
| | | public class ForgetPwdDto { |
| | | |
| | | @NotBlank(message = "账号不能为空") |
| | | @ApiModelProperty(value = "账号", example = "15773001234") |
| | | private String account; |
| | | |
| | | @NotBlank(message = "密码不能为空") |
| | | @NotBlank(message = "The password cannot be empty") |
| | | @ApiModelProperty(value = "新密码", example = "123456") |
| | | private String password; |
| | | private String Password; |
| | | |
| | | @NotBlank(message = "验证码不能为空") |
| | | @ApiModelProperty(value = "验证码", example = "123456") |
| | | private String code; |
| | | @NotBlank(message = "The new password cannot be empty") |
| | | @ApiModelProperty(value = "新密码", example = "123456") |
| | | private String newPassword; |
| | | |
| | | @NotBlank(message = "Confirm that the new password cannot be empty") |
| | | @ApiModelProperty(value = "新密码", example = "123456") |
| | | private String newPasswordAgain; |
| | | |
| | | } |