mitao
2024-05-17 15d3e08bb9f96d498798738d902008518ee3585c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.ruoyi.auth.form;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import javax.validation.constraints.NotBlank;
 
/**
 * @author mitao
 * @date 2024/5/17
 */
@ApiModel(value = "用户修改密码对象", description = "用户修改密码对象")
public class ChangePasswordBody extends LoginBody {
 
    @ApiModelProperty(value = "验证码", required = true)
    @NotBlank(message = "验证码不能为空")
    private String verificationCode;
 
    public String getVerificationCode() {
        return verificationCode;
    }
 
    public void setVerificationCode(String verificationCode) {
        this.verificationCode = verificationCode;
    }
}