mitao
2024-09-07 2862c3e4da3adbb4bea43151514f0c43b86476d6
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
26
package com.xinquan.system.api.model;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import javax.validation.constraints.NotBlank;
import lombok.Data;
 
/**
 * @author mitao
 * @date 2024/8/22
 */
@Data
@ApiModel(value = "APP端验证码对象", description = "APP端验证码对象")
public class AppCaptchaBody implements Serializable {
 
    private static final long serialVersionUID = 6079425494597881288L;
 
    @ApiModelProperty(value = "手机号", required = true)
    @NotBlank(message = "手机号不能为空")
    private String cellPhone;
 
    @ApiModelProperty(value = "验证码", required = true)
    @NotBlank(message = "验证码不能为空")
    private String captcha;
}