| package com.doumee.dao.web.request; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import javax.validation.constraints.NotEmpty; | 
| import java.io.Serializable; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2023/3/23 9:50 | 
|  */ | 
| @Data | 
| @ApiModel("微信授权手机号请求类") | 
| public class WxPhoneRequest implements Serializable { | 
|   | 
|     @NotEmpty(message = "encryptedData 不能为空") | 
|     @ApiModelProperty(value = "encryptedData") | 
|     private String encryptedData; | 
|   | 
|     @NotEmpty(message = "iv 不能为空") | 
|     @ApiModelProperty(value = "iv") | 
|     private String iv; | 
|   | 
|     @NotEmpty(message = "sessionKey 不能为空") | 
|     @ApiModelProperty(value = "sessionKey") | 
|     private String sessionKey; | 
|   | 
|     @NotEmpty(message = "openId 不能为空") | 
|     @ApiModelProperty(value = "openId") | 
|     private String openId; | 
|   | 
| } |