MrShi
2025-08-22 278da88f21bff29eef96a2e439ac35eb444630fe
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
package com.doumee.dao.dto;
 
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 = "openid 不能为空")
    @ApiModelProperty(value = "openid")
    private String openid;
 
    @NotEmpty(message = "code")
    @ApiModelProperty(value = "code")
    private String code;
 
}