| 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; | 
|   | 
| } |