/
zj
2025-05-02 9102aa7e0b42ce5b9667fa3b67fede889df60fc0
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
package project.party.model;
 
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Table;
 
import kernel.bo.EntityObject;
 
@Table(name="PAT_PARTY")
public class Party extends EntityObject {
    
    private static final long serialVersionUID = -66585270719884278L;
    
    /**
     * 角色
     */
    @Column(name="ROLENAME")
    private String rolename;
    
    /**
     * 用户code-UID
     */
    @Column(name="USERCODE")
    private String usercode;
    
    /**
     * 用户名-用户WSID
     */
    @Column(name="USERNAME")
    private String username;
 
    /**
     * 安全码,资金密码,盐值+safeword MD5编码
     */
    @Column(name="SAFEWORD")
    private String safeword;
 
    @Column(name="CREATE_TIME")
    private Date createTime;
    /**
     * 最后登录时间
     */
    @Column(name="LAST_LOGIN_TIME")
    private Date last_loginTime;
    /**
     * 是否锁定,如果锁定可以登录、查看,但不能操作业务有关。
     */
    @Column(name="ENABLED")
    private boolean enabled = true;
    /**
     * 登录权限
     */
    @Column(name="LOGINAUTHORITY")
    private boolean login_authority = true;
    /**
     * 充值权限
     */
    @Column(name="RECHARGE_AUTHORITY")
    private boolean recharge_authority = true;
 
    /**
     * 提现权限
     */
    @Column(name="WITHDRAWAUTHORITY")
    private boolean withdraw_authority = true;
 
    @Column(name="KYC_AUTHORITY")
    private boolean kyc_authority = false;
    
    /**
     * 高级认证
     */
    @Column(name="KYC_HIGHLEVEL_AUTHORITY")
    private boolean kyc_highlevel_authority = false;
    
    /**
     * 邮件群UID
     */
    @Column(name="EMAIL")
    private String email;
 
    /**
     * 是否邮箱已认证
     */
    @Column(name="EMAIL_AUTHORITY")
    private boolean email_authority = false;
 
    @Column(name="PHONE")
    private String phone;
 
    /**
     * 是否手机已认证
     */
    @Column(name="PHONE_AUTHORITY")
    private boolean phone_authority = false;
    
    /**
     * 是否活跃 7天无流水,则认为不是活跃用户呢
     */
    @Column(name="ACTIVE")
    private boolean active = true;
    /**
     * 是否在线
     */
    private boolean online = false;
 
    /**
     * 注备
     */
    @Column(name="REMARKS")
    private String remarks;
 
    /**
     * 名称-昵称
     */
    @Column(name="NAME")
    private String name;
    
    /**
     * 当日提现限制金额
     */
    @Column(name="WITHDRAW_LIMIT_AMOUNT")
    private double withdraw_limit_amount;
    
    /**
     * 余额收益配置金额
     */
    @Column(name="BALANCE_INCOME_CONFIG")
    private String balance_income_config;
 
    /**
     * 当前可用提现流水 WITHDRAW_LIMIT_NOW_AMOUNT
     */
    @Column(name="WITHDRAW_LIMIT_NOW_AMOUNT")
    private double withdraw_limit_now_amount;
 
    /**
     * 登陆Ip
     * 
     * @return
     */
    @Column(name="LOGIN_IP")
    private String login_ip;
    
    /**
     * 是否为赠送用户(达到限制金额)
     */
    @Column(name="GIFT_USER")
    private boolean gift_user;
    
    /**
     * 是否获得过赠送金额
     */
    @Column(name="GIFT_MONEY_FLAG")
    private boolean gift_money_flag;
    
    /**
     * 会员等级 默认1
     * 
     * 十进制个位表示系统级别:1/新注册;2/邮箱谷歌手机其中有一个已验证;3/用户实名认证;4/用户高级认证;
     * 十进制十位表示自定义级别:对应在前端显示为如VIP1 VIP2等级、黄金 白银等级;
     * 如:级别11表示:新注册的前端显示为VIP1;
     */
    @Column(name="USER_LEVEL")
    private int user_level;
    
    /**
     * 在推荐码邀请权限开启后,是否拥有的邀请注册权限
     */
    @Column(name="REGSITER_USERCODE")
    private boolean register_usercode;
    
    /**
     * 承兑商类型:0不是承兑商/1后台承兑商/2用户承兑商
     */
    @Column(name="C2C_USER_TYPE")
    private int c2cUserType;
 
 
    @Column(name = "OPEN_BLANK")
    private int openBlank;
 
    @Column(name = "LEVER")
    private String lever;
 
    public Date getCreateTime() {
        return this.createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public String getUsername() {
        return this.username;
    }
 
    public void setUsername(String username) {
        this.username = username;
    }
 
    public String getSafeword() {
        return this.safeword;
    }
 
    public void setSafeword(String safeword) {
        this.safeword = safeword;
    }
 
    public Date getLast_loginTime() {
        return last_loginTime;
    }
 
    public void setLast_loginTime(Date last_loginTime) {
        this.last_loginTime = last_loginTime;
    }
 
    public boolean getEnabled() {
        return this.enabled;
    }
 
    public void setEnabled(boolean enabled) {
        this.enabled = enabled;
    }
 
    public String getRolename() {
        return rolename;
    }
 
    public void setRolename(String rolename) {
        this.rolename = rolename;
    }
 
    public boolean getLogin_authority() {
        return login_authority;
    }
 
    public void setLogin_authority(boolean login_authority) {
        this.login_authority = login_authority;
    }
 
    public boolean getWithdraw_authority() {
        return withdraw_authority;
    }
 
    public void setWithdraw_authority(boolean withdraw_authority) {
        this.withdraw_authority = withdraw_authority;
    }
 
    public String getUsercode() {
        return usercode;
    }
 
    public void setUsercode(String usercode) {
        this.usercode = usercode;
    }
 
    public boolean isRecharge_authority() {
        return recharge_authority;
    }
 
    public void setRecharge_authority(boolean recharge_authority) {
        this.recharge_authority = recharge_authority;
    }
 
    public String getEmail() {
        return email;
    }
 
    public void setEmail(String email) {
        this.email = email;
    }
 
    public boolean getEmail_authority() {
        return this.email_authority;
    }
 
    public void setEmail_authority(boolean email_authority) {
        this.email_authority = email_authority;
    }
 
    public boolean isActive() {
        return active;
    }
 
    public void setActive(boolean active) {
        this.active = active;
    }
 
    public String getRemarks() {
        return remarks;
    }
 
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public boolean isOnline() {
        return online;
    }
 
    public void setOnline(boolean online) {
        this.online = online;
    }
 
    public String getPhone() {
        return phone;
    }
 
    public void setPhone(String phone) {
        this.phone = phone;
    }
 
    public boolean getPhone_authority() {
        return this.phone_authority;
    }
 
    public void setPhone_authority(boolean phone_authority) {
        this.phone_authority = phone_authority;
    }
 
    public boolean getKyc_authority() {
        return kyc_authority;
    }
 
    public void setKyc_authority(boolean kyc_authority) {
        this.kyc_authority = kyc_authority;
    }
 
    public boolean isKyc_highlevel_authority() {
        return kyc_highlevel_authority;
    }
 
    public void setKyc_highlevel_authority(boolean kyc_highlevel_authority) {
        this.kyc_highlevel_authority = kyc_highlevel_authority;
    }
 
    public double getWithdraw_limit_amount() {
        return withdraw_limit_amount;
    }
 
    public void setWithdraw_limit_amount(double withdraw_limit_amount) {
        this.withdraw_limit_amount = withdraw_limit_amount;
    }
 
    public String getLogin_ip() {
        return login_ip;
    }
 
    public void setLogin_ip(String login_ip) {
        this.login_ip = login_ip;
    }
 
    public double getWithdraw_limit_now_amount() {
        return withdraw_limit_now_amount;
    }
 
    public void setWithdraw_limit_now_amount(double withdraw_limit_now_amount) {
        this.withdraw_limit_now_amount = withdraw_limit_now_amount;
    }
 
    public boolean getGift_user() {
        return gift_user;
    }
 
    public void setGift_user(boolean gift_user) {
        this.gift_user = gift_user;
    }
 
    public boolean getGift_money_flag() {
        return gift_money_flag;
    }
 
    public void setGift_money_flag(boolean gift_money_flag) {
        this.gift_money_flag = gift_money_flag;
    }
 
    public int getUser_level() {
        return user_level;
    }
 
    public void setUser_level(int user_level) {
        this.user_level = user_level;
    }
 
    public boolean getRegister_usercode() {
        return register_usercode;
    }
 
    public void setRegister_usercode(boolean register_usercode) {
        this.register_usercode = register_usercode;
    }
 
    public int getC2cUserType() {
        return c2cUserType;
    }
 
    public void setC2cUserType(int c2cUserType) {
        this.c2cUserType = c2cUserType;
    }
 
    public String getBalance_income_config() {
        return balance_income_config;
    }
 
    public void setBalance_income_config(String balance_income_config) {
        this.balance_income_config = balance_income_config;
    }
 
    public boolean isEnabled() {
        return enabled;
    }
 
    public boolean isLogin_authority() {
        return login_authority;
    }
 
    public boolean isWithdraw_authority() {
        return withdraw_authority;
    }
 
    public boolean isKyc_authority() {
        return kyc_authority;
    }
 
    public boolean isEmail_authority() {
        return email_authority;
    }
 
    public boolean isPhone_authority() {
        return phone_authority;
    }
 
    public boolean isGift_user() {
        return gift_user;
    }
 
    public boolean isGift_money_flag() {
        return gift_money_flag;
    }
 
    public boolean isRegister_usercode() {
        return register_usercode;
    }
 
    public int getOpenBlank() {
        return openBlank;
    }
 
    public void setOpenBlank(int openBlank) {
        this.openBlank = openBlank;
    }
 
    public String getLever() {
        return lever;
    }
 
    public void setLever(String lever) {
        this.lever = lever;
    }
}