xuekang
2024-05-13 15a0280ae9e7db96fdf0744c722d214d2cb5a0e5
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
package com.nuvole.four.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * 实体类对应的数据表为:  store_member_info
 * @author system-generator
 * @date 2020-07-31 09:50:29
 */
@ApiModel(value ="会员信息表")
public class StoreMemberInfo {
    @ApiModelProperty(value = "id")
    private Long id;
 
    @ApiModelProperty(value = "会员名称")
    private String memberNameEncrypt;
 
    @ApiModelProperty(value = "会员名称脱敏")
    private String memberName;
 
    @ApiModelProperty(value = "会员类型 1普通会员 2 客户经理")
    private Short memberType;
 
    @ApiModelProperty(value = "身份证号MD5密文")
    private String idcardEncryptMd5;
 
    @ApiModelProperty(value = "身份证密文")
    private String idcardEncrypt;
 
    @ApiModelProperty(value = "身份证脱敏")
    private String idcard;
 
    @ApiModelProperty(value = "手机号密文")
    private String mobileEncrypt;
 
    @ApiModelProperty(value = "手机号脱敏")
    private String mobile;
 
    @ApiModelProperty(value = "头像")
    private String headImage;
 
    @ApiModelProperty(value = "锁定次数")
    private Short lockTimes;
 
    @ApiModelProperty(value = "锁定到期日期")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date lockTime;
 
    @ApiModelProperty(value = "用户唯一标识(微信小程序openid)")
    private String wechatOpenid;
 
    @ApiModelProperty(value = "支付宝userID")
    private String aliUserId;
 
    @ApiModelProperty(value = "支付宝唯一凭证(支付宝公众平台unionid)")
    private String aliUnionid;
 
    @ApiModelProperty(value = "用户唯一标识(支付宝小程序openid)")
    private String aliOpenid;
 
    @ApiModelProperty(value = "支付宝openId(公众号)")
    private String aliH5Openid;
 
    @ApiModelProperty(value = "翼支付userID")
    private String bestPayUserId;
 
    @ApiModelProperty(value = "云闪付userID")
    private String cloudPayUserId;
 
    @ApiModelProperty(value = "用户唯一标识(公众号openid)")
    private String wechatH5Openid;
 
    @ApiModelProperty(value = "微信唯一凭证(微信公众平台unionid)")
    private String wechatUnionid;
 
    @ApiModelProperty(value = "微信头像")
    private String wechatHeadImage;
 
    @ApiModelProperty(value = "会员昵称")
    private String nickName;
 
    @ApiModelProperty(value = "机构id")
    private Long orgId;
 
    @ApiModelProperty(value = "机构编号")
    private String orgCode;
 
    @ApiModelProperty(value = "机构全名称")
    private String orgFullName;
 
    @ApiModelProperty(value = "金融等级【数据字典】")
    private String financeLv;
 
    @ApiModelProperty(value = "区域id")
    private Long areaId;
 
    @ApiModelProperty(value = "区域code")
    private String areaCode;
 
    @ApiModelProperty(value = "区域全名称")
    private String areaFullName;
 
    @ApiModelProperty(value = "客户经理名称")
    private String managerName;
 
    @ApiModelProperty(value = "客户经理id")
    private Long managerId;
 
    @ApiModelProperty(value = "会员积分")
    private Long memberScore;
 
    @ApiModelProperty(value = "平台消耗积分")
    private Long costScore;
 
    @ApiModelProperty(value = "存量积分")
    private Long stockScore;
 
    @ApiModelProperty(value = "会员币")
    private Integer coin;
 
    @ApiModelProperty(value = "创建时间")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    @ApiModelProperty(value = "状态(0 禁用,1启用)")
    private Short state;
 
    @ApiModelProperty(value = "云商通用户唯一标识(如果为空代表没在云商通创建会员) ")
    private String yunstuserid;
 
    @ApiModelProperty(value = "推广人id")
    private Long pushwidemanid;
 
    @ApiModelProperty(value = "人才id")
    private String talentId;
    @ApiModelProperty(value = "出生日期")
    private Integer birthday;
    @ApiModelProperty(value = "性别 0男1女")
    private Integer sex;
    @ApiModelProperty(value = "人才类型")
    private String talentType;
    @ApiModelProperty(value = "人才类型标签")
    private String talentTypeLabel;
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getMemberNameEncrypt() {
        return memberNameEncrypt;
    }
 
    public void setMemberNameEncrypt(String memberNameEncrypt) {
        this.memberNameEncrypt = memberNameEncrypt == null ? null : memberNameEncrypt.trim();
    }
 
    public String getMemberName() {
        return memberName;
    }
 
    public void setMemberName(String memberName) {
        this.memberName = memberName == null ? null : memberName.trim();
    }
 
    public Short getMemberType() {
        return memberType;
    }
 
    public void setMemberType(Short memberType) {
        this.memberType = memberType;
    }
 
    public String getIdcardEncryptMd5() {
        return idcardEncryptMd5;
    }
 
    public void setIdcardEncryptMd5(String idcardEncryptMd5) {
        this.idcardEncryptMd5 = idcardEncryptMd5 == null ? null : idcardEncryptMd5.trim();
    }
 
    public String getIdcardEncrypt() {
        return idcardEncrypt;
    }
 
    public void setIdcardEncrypt(String idcardEncrypt) {
        this.idcardEncrypt = idcardEncrypt == null ? null : idcardEncrypt.trim();
    }
 
    public String getIdcard() {
        return idcard;
    }
 
    public void setIdcard(String idcard) {
        this.idcard = idcard == null ? null : idcard.trim();
    }
 
    public String getMobileEncrypt() {
        return mobileEncrypt;
    }
 
    public void setMobileEncrypt(String mobileEncrypt) {
        this.mobileEncrypt = mobileEncrypt == null ? null : mobileEncrypt.trim();
    }
 
    public String getMobile() {
        return mobile;
    }
 
    public void setMobile(String mobile) {
        this.mobile = mobile == null ? null : mobile.trim();
    }
 
    public String getHeadImage() {
        return headImage;
    }
 
    public void setHeadImage(String headImage) {
        this.headImage = headImage == null ? null : headImage.trim();
    }
 
    public Short getLockTimes() {
        return lockTimes;
    }
 
    public void setLockTimes(Short lockTimes) {
        this.lockTimes = lockTimes;
    }
 
    @JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    public Date getLockTime() {
        return lockTime;
    }
 
    public void setLockTime(Date lockTime) {
        this.lockTime = lockTime;
    }
 
    public String getWechatOpenid() {
        return wechatOpenid;
    }
 
    public void setWechatOpenid(String wechatOpenid) {
        this.wechatOpenid = wechatOpenid == null ? null : wechatOpenid.trim();
    }
 
    public String getWechatH5Openid() {
        return wechatH5Openid;
    }
 
    public void setWechatH5Openid(String wechatH5Openid) {
        this.wechatH5Openid = wechatH5Openid;
    }
 
    public String getWechatUnionid() {
        return wechatUnionid;
    }
 
    public void setWechatUnionid(String wechatUnionid) {
        this.wechatUnionid = wechatUnionid == null ? null : wechatUnionid.trim();
    }
 
    public String getWechatHeadImage() {
        return wechatHeadImage;
    }
 
    public void setWechatHeadImage(String wechatHeadImage) {
        this.wechatHeadImage = wechatHeadImage == null ? null : wechatHeadImage.trim();
    }
 
    public String getNickName() {
        return nickName;
    }
 
    public void setNickName(String nickName) {
        this.nickName = nickName == null ? null : nickName.trim();
    }
 
    public Long getOrgId() {
        return orgId;
    }
 
    public void setOrgId(Long orgId) {
        this.orgId = orgId;
    }
 
    public String getOrgCode() {
        return orgCode;
    }
 
    public void setOrgCode(String orgCode) {
        this.orgCode = orgCode == null ? null : orgCode.trim();
    }
 
    public String getOrgFullName() {
        return orgFullName;
    }
 
    public void setOrgFullName(String orgFullName) {
        this.orgFullName = orgFullName == null ? null : orgFullName.trim();
    }
 
    public String getFinanceLv() {
        return financeLv;
    }
 
    public void setFinanceLv(String financeLv) {
        this.financeLv = financeLv == null ? null : financeLv.trim();
    }
 
    public Long getAreaId() {
        return areaId;
    }
 
    public void setAreaId(Long areaId) {
        this.areaId = areaId;
    }
 
    public String getAreaCode() {
        return areaCode;
    }
 
    public void setAreaCode(String areaCode) {
        this.areaCode = areaCode == null ? null : areaCode.trim();
    }
 
    public String getAreaFullName() {
        return areaFullName;
    }
 
    public void setAreaFullName(String areaFullName) {
        this.areaFullName = areaFullName == null ? null : areaFullName.trim();
    }
 
    public String getManagerName() {
        return managerName;
    }
 
    public void setManagerName(String managerName) {
        this.managerName = managerName == null ? null : managerName.trim();
    }
 
    public Long getManagerId() {
        return managerId;
    }
 
    public void setManagerId(Long managerId) {
        this.managerId = managerId;
    }
 
    public Long getMemberScore() {
        return memberScore;
    }
 
    public void setMemberScore(Long memberScore) {
        this.memberScore = memberScore;
    }
 
    public Long getCostScore() {
        return costScore;
    }
 
    public void setCostScore(Long costScore) {
        this.costScore = costScore;
    }
 
    public Long getStockScore() {
        return stockScore;
    }
 
    public void setStockScore(Long stockScore) {
        this.stockScore = stockScore;
    }
 
    public Integer getCoin() {
        return coin;
    }
 
    public void setCoin(Integer coin) {
        this.coin = coin;
    }
 
    @JsonFormat(locale = "zh", timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Short getState() {
        return state;
    }
 
    public void setState(Short state) {
        this.state = state;
    }
 
    public String getYunstuserid() {
        return yunstuserid;
    }
 
    public void setYunstuserid(String yunstuserid) {
        this.yunstuserid = yunstuserid == null ? null : yunstuserid.trim();
    }
 
    public Long getPushwidemanid() {
        return pushwidemanid;
    }
 
    public void setPushwidemanid(Long pushwidemanid) {
        this.pushwidemanid = pushwidemanid;
    }
 
    public String getTalentId() {
        return talentId;
    }
 
    public void setTalentId(String talentId) {
        this.talentId = talentId;
    }
 
    public Integer getBirthday() {
        return birthday;
    }
 
    public void setBirthday(Integer birthday) {
        this.birthday = birthday;
    }
 
    public Integer getSex() {
        return sex;
    }
 
    public void setSex(Integer sex) {
        this.sex = sex;
    }
 
    public String getTalentType() {
        return talentType;
    }
 
    public void setTalentType(String talentType) {
        this.talentType = talentType;
    }
 
    public String getTalentTypeLabel() {
        return talentTypeLabel;
    }
 
    public void setTalentTypeLabel(String talentTypeLabel) {
        this.talentTypeLabel = talentTypeLabel;
    }
 
    public String getAliUserId() {
        return aliUserId;
    }
 
    public void setAliUserId(String aliUserId) {
        this.aliUserId = aliUserId;
    }
 
    public String getAliUnionid() {
        return aliUnionid;
    }
 
    public void setAliUnionid(String aliUnionid) {
        this.aliUnionid = aliUnionid;
    }
 
    public String getAliOpenid() {
        return aliOpenid;
    }
 
    public void setAliOpenid(String aliOpenid) {
        this.aliOpenid = aliOpenid;
    }
 
    public String getAliH5Openid() {
        return aliH5Openid;
    }
 
    public void setAliH5Openid(String aliH5Openid) {
        this.aliH5Openid = aliH5Openid;
    }
 
    public String getBestPayUserId() {
        return bestPayUserId;
    }
 
    public void setBestPayUserId(String bestPayUserId) {
        this.bestPayUserId = bestPayUserId;
    }
 
    public String getCloudPayUserId() {
        return cloudPayUserId;
    }
 
    public void setCloudPayUserId(String cloudPayUserId) {
        this.cloudPayUserId = cloudPayUserId;
    }
}