Administrator
4 days ago bdcd332feebe13ea46186ed093ca55eb2f3b3fdf
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
30
31
32
33
34
35
36
37
38
package cc.mrbird.febs.mall.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
@Data
@ApiModel(value = "ApiXcxSaveInfoDto", description = "小程序接收用户数据")
public class ApiXcxSaveInfoDto {
 
    @ApiModelProperty(value = "手机号码" )
    private String phone;
 
    @ApiModelProperty(value = "昵称" )
    private String nickName;
 
    @ApiModelProperty(value = "头像" )
    private String avatarUrl;
 
    @ApiModelProperty(value = "性别" )
    private Integer gender;
 
    @ApiModelProperty(value = "邀请码")
    private String inviteId;
 
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @ApiModelProperty(value = "生日")
    private Date birthday;
 
    @ApiModelProperty(value = "真实姓名")
    private String realName;
 
}