无关风月
2024-12-09 2053b8fe0e98d4b4449bc756a93ced78f42277c4
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
39
40
41
42
43
44
45
46
47
48
package com.jilongda.optometry.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
 
/**
 * @ClassName AppUserVO
 * @Description TODO
 * @Author jqs
 * @Date 2024/4/18 9:50
 * @Version 1.0
 */
@Data
public class AppUserVO {
 
    @ApiModelProperty(value = "手机号码")
    private String phone;
 
    @ApiModelProperty(value = "用户昵称")
    private String nickName;
 
    @ApiModelProperty(value = "微信头像地址")
    private String avatarUrl;
 
    @ApiModelProperty(value = "省")
    private String province;
 
    @ApiModelProperty(value = "市")
    private String city;
 
    @ApiModelProperty(value = "区")
    private String area;
 
    @ApiModelProperty(value = "详细地址")
    private String address;
 
    @ApiModelProperty(value = "生日")
    private LocalDateTime birthday;
 
    @ApiModelProperty(value = "1男2女0未知")
    private Integer gender;
 
    @ApiModelProperty(value = "职位1总经理2销售总监3业务经理")
    private Integer userType;
 
}