jiangping
2025-02-19 da045f4ac67ac3d4f55b2dd34e9a59fb7afc0c58
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
27
28
29
package com.doumee.dao.business.web.request;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import javax.validation.constraints.NotEmpty;
 
/**
 * Created by IntelliJ IDEA.
 *
 * @Author : Rk
 * @create 2023/6/25 14:52
 */
@Data
public class RegisterRequest {
 
    @NotEmpty(message = "手机号 不能为空")
    @ApiModelProperty(value = "mobile")
    private String mobile;
 
    @NotEmpty(message = "验证码 不能为空")
    @ApiModelProperty(value = "code")
    private String code;
 
    @NotEmpty(message = "密码 不能为空")
    @ApiModelProperty(value = "password")
    private String password;
 
}