yujian
2020-05-06 a338d86bcaf17f2ba9296a601cdbda4d3e9baae0
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
package com.yeshi.fanli.entity.bus.user;
 
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
import com.google.gson.annotations.Expose;
 
/**
 * 用户附加信息
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_user_info_extra")
public class UserInfoExtra {
 
    @Column(name = "uie_id")
    private Long id;
 
    // 用户id
    @Expose
    @Column(name = "uie_uid")
    private UserInfo userInfo;
 
    // 等级id
    @Expose
    @Column(name = "uie_rank_id")
    private UserRank userRank;
 
    // 等级来源:返利、分享、邀请
    @Column(name = "uie_rank_source")
    private Integer rankSource;
 
    // 等级判断订单数量
    @Column(name = "uie_rank_order_num")
    private Integer rankOrderNum;
 
    // 等级更新时间
    @Expose
    @Column(name = "uie_rank_update_time")
    private Date rankUpdateTime;
 
    // 邀请码
    @Column(name = "uie_invite_code")
    private String inviteCode;
 
    // 邀请码-会员
    @Column(name = "uie_invite_code_vip")
    private String inviteCodeVip; 
    
 
    // 券未读数量
    @Column(name = "uie_coupon_news")
    private Integer couponNews;
 
    // 是否同步导航栏
    @Column(name = "uie_synch_navbar")
    private Boolean synchNavbar;
 
    // 首次登录时间
    @Column(name = "uie_first_login_time")
    private Date firstLoginTime;
 
    // 性别: 1-女 2-男
    @Column(name = "uie_sex")
    private Integer sex;
 
    // 微信号
    @Column(name = "uie_weixin")
    private String weiXin;
 
    // 金币数量
    @Column(name = "uie_gold_coin")
    private Integer goldCoin;
 
    // 用户标识
    @Column(name = "uie_mark")
    private String mark;
 
    // 用户最近活跃时间
    @Column(name = "uie_active_time")
    private Date activeTime;
 
    // 二维码
    @Column(name = "uie_ercode")
    private String erCode;
        
    // 是淘宝授权
    @Column(name = "uie_bind_taobao")
    private Boolean bindTaoBao;
    
    // 创建时间
    @Column(name = "uie_create_time")
    private Date createTime;
 
    // 更新时间
    @Column(name = "uie_update_time")
    private Date updateTime;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public UserRank getUserRank() {
        return userRank;
    }
 
    public void setUserRank(UserRank userRank) {
        this.userRank = userRank;
    }
 
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public UserInfo getUserInfo() {
        return userInfo;
    }
 
    public void setUserInfo(UserInfo userInfo) {
        this.userInfo = userInfo;
    }
 
    public Integer getRankSource() {
        return rankSource;
    }
 
    public void setRankSource(Integer rankSource) {
        this.rankSource = rankSource;
    }
 
    public Integer getRankOrderNum() {
        return rankOrderNum;
    }
 
    public void setRankOrderNum(Integer rankOrderNum) {
        this.rankOrderNum = rankOrderNum;
    }
 
    public String getInviteCode() {
        return inviteCode;
    }
 
    public void setInviteCode(String inviteCode) {
        this.inviteCode = inviteCode;
    }
 
    public Integer getCouponNews() {
        return couponNews;
    }
 
    public void setCouponNews(Integer couponNews) {
        this.couponNews = couponNews;
    }
 
    public Date getFirstLoginTime() {
        return firstLoginTime;
    }
 
    public void setFirstLoginTime(Date firstLoginTime) {
        this.firstLoginTime = firstLoginTime;
    }
 
    public Boolean getSynchNavbar() {
        return synchNavbar;
    }
 
    public void setSynchNavbar(Boolean synchNavbar) {
        this.synchNavbar = synchNavbar;
    }
 
    public Integer getSex() {
        return sex;
    }
 
    public void setSex(Integer sex) {
        this.sex = sex;
    }
 
    public String getWeiXin() {
        return weiXin;
    }
 
    public void setWeiXin(String weiXin) {
        this.weiXin = weiXin;
    }
 
    public Integer getGoldCoin() {
        return goldCoin;
    }
 
    public void setGoldCoin(Integer goldCoin) {
        this.goldCoin = goldCoin;
    }
 
    public String getMark() {
        return mark;
    }
 
    public void setMark(String mark) {
        this.mark = mark;
    }
 
    public Date getActiveTime() {
        return activeTime;
    }
 
    public void setActiveTime(Date activeTime) {
        this.activeTime = activeTime;
    }
 
    public String getInviteCodeVip() {
        return inviteCodeVip;
    }
 
    public void setInviteCodeVip(String inviteCodeVip) {
        this.inviteCodeVip = inviteCodeVip;
    }
 
    public String getErCode() {
        return erCode;
    }
 
    public void setErCode(String erCode) {
        this.erCode = erCode;
    }
 
    public Date getRankUpdateTime() {
        return rankUpdateTime;
    }
 
    public void setRankUpdateTime(Date rankUpdateTime) {
        this.rankUpdateTime = rankUpdateTime;
    }
 
    public Boolean getBindTaoBao() {
        return bindTaoBao;
    }
 
    public void setBindTaoBao(Boolean bindTaoBao) {
        this.bindTaoBao = bindTaoBao;
    }
 
}