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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
| package com.dsh.other.feignclient.account.model;
|
| import com.fasterxml.jackson.annotation.JsonFormat;
| import lombok.Data;
|
| import java.util.Date;
|
| /**
| * @author zhibing.pu
| * @date 2023/6/29 14:09
| */
| @Data
| public class AppUser {
| private Integer id;
| /**
| * 编号
| */
| private String code;
| /**
| * 姓名
| */
| private String name;
| /**
| * 电话
| */
| private String phone;
| /**
| * 密码
| */
| private String password;
| /**
| * 生日
| */
| @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
| private Date birthday;
| /**
| * 性别(1=男,2=女)
| */
| private Integer gender;
| /**
| * 身高
| */
| private Double height;
| /**
| * 体重
| */
| private Double weight;
| /**
| * bmi健康值
| */
| private Double bmi;
| /**
| * 身份证号
| */
| private String idCard;
| /**
| * 微信openid
| */
| private String openid;
| /**
| * 省
| */
| private String province;
| /**
| * 省编号
| */
| private String provinceCode;
| /**
| * 市
| */
| private String city;
| /**
| * 市编号
| */
| private String cityCode;
| /**
| * 是否是年度会员(0=否,1=是)
| */
| private Integer isVip;
| /**
| * 会员有效期
| */
| private Date vipEndTime;
| /**
| * 会员等级id
| */
| private Integer viplevelId;
| /**
| * 推荐用户id
| */
| private Integer referralUserId;
| /**
| * 销售员id
| */
| private Integer salesmanUserId;
| /**
| * 状态(1=正常,2=冻结,3=删除)
| */
| private Integer state;
| /**
| * 剩余积分
| */
| private Integer integral;
| /**
| * 玩湃币
| */
| private Integer playPaiCoins;
| /**
| * 用户头像
| */
| private String headImg;
| /**
| * 添加时间
| */
| private Date insertTime;
|
| private Integer points;
| }
|
|