1
zj
2024-08-12 11bb86a81c99672e5e51ca7289f49a57346739e8
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
package project.c2c;
 
import java.util.Date;
 
import javax.persistence.Column;
import javax.persistence.Table;
 
import kernel.bo.EntityObject;
 
@Table(name="T_C2C_USER")
public class C2cUser extends EntityObject {
 
    private static final long serialVersionUID = 4911926779531882495L;
 
    /**
     * C2C管理员PARTY_ID
     */
    @Column(name="C2C_MANAGER_PARTY_ID")
    private String c2cManagerPartyId;
    
    /**
     * 1后台承兑商/2用户承兑商
     */
    @Column(name="C2C_USER_TYPE")
    private int c2cUserType;
 
    /**
     * 承兑商CODE
     */
    @Column(name="C2C_USER_CODE")
    private String c2cUserCode;
 
    /**
     * 承兑商PARTY_ID
     */
    @Column(name="C2C_USER_PARTY_ID")
    private String c2cUserPartyId;
 
    /**
     * 承兑商昵称
     */
    @Column(name="NICK_NAME")
    private String nickName;
 
    /**
     * 承兑商头像
     */
    @Column(name="HEAD_IMG")
    private String headImg;
    
    /**
     * 剩余保证金
     */
    @Column(name="DEPOSIT")
    private double deposit;
    
    /**
     * 保证金
     */
    @Column(name="DEPOSIT_OPEN")
    private double depositOpen;
    
    /**
     * 保证金赠送比率
     */
    @Column(name="DEPOSIT_GIFT_RATE")
    private double depositGiftRate;
    
    /**
     * 30日成单数
     */
    @Column(name="THIRTY_DAYS_ORDER")
    private int thirtyDaysOrder;
    
    /**
     * 30日成单率
     */
    @Column(name="THIRTY_DAYS_ORDER_RATIO")
    private double thirtyDaysOrderRatio;
    
    /**
     * 30日平均放行时间
     */
    @Column(name="THIRTY_DAYS_PASS_AVERAGE_TIME")
    private int thirtyDaysPassAverageTime;
    
    /**
     * 30日平均付款时间
     */
    @Column(name="THIRTY_DAYS_PAY_AVERAGE_TIME")
    private int thirtyDaysPayAverageTime;
    
    /**
     * 30日交易量
     */
    @Column(name="THIRTY_DAYS_AMOUNT")
    private double thirtyDaysAmount;
    
    /**
     * 买交易量
     */
    @Column(name="BUY_AMOUNT")
    private double buyAmount;
    
    /**
     * 卖交易量
     */
    @Column(name="SELL_AMOUNT")
    private double sellAmount;
    
    /**
     * 总交易量
     */
    @Column(name="TOTAL_AMOUNT")
    private double totalAmount;
    
    /**
     * 账号创建天数
     */
    @Column(name="ACCOUNT_CREATE_DAYS")
    private int accountCreateDays;
    
    /**
     * 首次交易至今天数
     */
    @Column(name="FIRST_EXCHANGE_DAYS")
    private int firstExchangeDays;
    
    /**
     * 交易人数
     */
    @Column(name="EXCHANGE_USERS")
    private int exchangeUsers;
    
    /**
     * 买成单数
     */
    @Column(name="BUY_SUCCESS_ORDERS")
    private int buySuccessOrders;
    
    /**
     * 卖成单数
     */
    @Column(name="SELL_SUCCESS_ORDERS")
    private int sellSuccessOrders;
    
    /**
     * 总成单数
     */
    @Column(name="TOTAL_SUCCESS_ORDERS")
    private int totalSuccessOrders;
    
    /**
     * 好评数
     */
    @Column(name="APPRAISE_GOOD")
    private int appraiseGood;
    
    /**
     * 差评数
     */
    @Column(name="APPRAISE_BAD")
    private int appraiseBad;
    
    /**
     * 订单邮件通知:0关闭/1打开
     */
    @Column(name="ORDER_MAIL_NOTICE_OPEN")
    private int orderMailNoticeOpen;
    
    /**
     * 订单短信通知:0关闭/1打开
     */
    @Column(name="ORDER_SMS_NOTICE_OPEN")
    private int orderSmsNoticeOpen;
    
    /**
     * 订单APP通知:0关闭/1打开
     */
    @Column(name="ORDER_APP_NOTICE_OPEN")
    private int orderAppNoticeOpen;
    
    /**
     * 申诉邮件通知:0关闭/1打开
     */
    @Column(name="APPEAL_MAIL_NOTICE_OPEN")
    private int appealMailNoticeOpen;
    
    /**
     * 申诉短信通知:0关闭/1打开
     */
    @Column(name="APPEAL_SMS_NOTICE_OPEN")
    private int appealSmsNoticeOpen;
    
    /**
     * 申诉APP通知:0关闭/1打开
     */
    @Column(name="APPEAL_APP_NOTICE_OPEN")
    private int appealAppNoticeOpen;
    
    /**
     * 聊天APP通知:0关闭/1打开
     */
    @Column(name="CHAT_APP_NOTICE_OPEN")
    private int chatAppNoticeOpen;
    
    /**
     * 安全邮件通知:0关闭/1打开
     */
    @Column(name="SECURITY_MAIL_NOTICE_OPEN")
    private int securityMailNoticeOpen;
    
    /**
     * 安全短信通知:0关闭/1打开
     */
    @Column(name="SECURITY_SMS_NOTICE_OPEN")
    private int securitySmsNoticeOpen;
    
    /**
     * 安全APP通知:0关闭/1打开
     */
    @Column(name="SECURITY_APP_NOTICE_OPEN")
    private int securityAppNoticeOpen;
    
    /**
     * 备注
     */
    @Column(name="REMARK")
    private String remark;
    
    /**
     * 创建时间
     */
    @Column(name="CREATE_TIME")
    private Date createTime;
 
    /**
     * 更新时间
     */
    @Column(name="UPDATE_TIME")
    private Date updateTime;
 
    public String getC2cManagerPartyId() {
        return c2cManagerPartyId;
    }
 
    public void setC2cManagerPartyId(String c2cManagerPartyId) {
        this.c2cManagerPartyId = c2cManagerPartyId;
    }
 
    public int getC2cUserType() {
        return c2cUserType;
    }
 
    public void setC2cUserType(int c2cUserType) {
        this.c2cUserType = c2cUserType;
    }
 
    public String getC2cUserCode() {
        return c2cUserCode;
    }
 
    public void setC2cUserCode(String c2cUserCode) {
        this.c2cUserCode = c2cUserCode;
    }
 
    public String getC2cUserPartyId() {
        return c2cUserPartyId;
    }
 
    public void setC2cUserPartyId(String c2cUserPartyId) {
        this.c2cUserPartyId = c2cUserPartyId;
    }
 
    public String getNickName() {
        return nickName;
    }
 
    public void setNickName(String nickName) {
        this.nickName = nickName;
    }
 
    public String getHeadImg() {
        return headImg;
    }
 
    public void setHeadImg(String headImg) {
        this.headImg = headImg;
    }
 
    public double getDeposit() {
        return deposit;
    }
 
    public void setDeposit(double deposit) {
        this.deposit = deposit;
    }
 
    public double getDepositOpen() {
        return depositOpen;
    }
 
    public void setDepositOpen(double depositOpen) {
        this.depositOpen = depositOpen;
    }
 
    public double getDepositGiftRate() {
        return depositGiftRate;
    }
 
    public void setDepositGiftRate(double depositGiftRate) {
        this.depositGiftRate = depositGiftRate;
    }
 
    public int getThirtyDaysOrder() {
        return thirtyDaysOrder;
    }
 
    public void setThirtyDaysOrder(int thirtyDaysOrder) {
        this.thirtyDaysOrder = thirtyDaysOrder;
    }
 
    public double getThirtyDaysOrderRatio() {
        return thirtyDaysOrderRatio;
    }
 
    public void setThirtyDaysOrderRatio(double thirtyDaysOrderRatio) {
        this.thirtyDaysOrderRatio = thirtyDaysOrderRatio;
    }
 
    public int getThirtyDaysPassAverageTime() {
        return thirtyDaysPassAverageTime;
    }
 
    public void setThirtyDaysPassAverageTime(int thirtyDaysPassAverageTime) {
        this.thirtyDaysPassAverageTime = thirtyDaysPassAverageTime;
    }
 
    public int getThirtyDaysPayAverageTime() {
        return thirtyDaysPayAverageTime;
    }
 
    public void setThirtyDaysPayAverageTime(int thirtyDaysPayAverageTime) {
        this.thirtyDaysPayAverageTime = thirtyDaysPayAverageTime;
    }
 
    public double getThirtyDaysAmount() {
        return thirtyDaysAmount;
    }
 
    public void setThirtyDaysAmount(double thirtyDaysAmount) {
        this.thirtyDaysAmount = thirtyDaysAmount;
    }
 
    public double getBuyAmount() {
        return buyAmount;
    }
 
    public void setBuyAmount(double buyAmount) {
        this.buyAmount = buyAmount;
    }
 
    public double getSellAmount() {
        return sellAmount;
    }
 
    public void setSellAmount(double sellAmount) {
        this.sellAmount = sellAmount;
    }
 
    public double getTotalAmount() {
        return totalAmount;
    }
 
    public void setTotalAmount(double totalAmount) {
        this.totalAmount = totalAmount;
    }
 
    public int getAccountCreateDays() {
        return accountCreateDays;
    }
 
    public void setAccountCreateDays(int accountCreateDays) {
        this.accountCreateDays = accountCreateDays;
    }
 
    public int getFirstExchangeDays() {
        return firstExchangeDays;
    }
 
    public void setFirstExchangeDays(int firstExchangeDays) {
        this.firstExchangeDays = firstExchangeDays;
    }
 
    public int getExchangeUsers() {
        return exchangeUsers;
    }
 
    public void setExchangeUsers(int exchangeUsers) {
        this.exchangeUsers = exchangeUsers;
    }
 
    public int getBuySuccessOrders() {
        return buySuccessOrders;
    }
 
    public void setBuySuccessOrders(int buySuccessOrders) {
        this.buySuccessOrders = buySuccessOrders;
    }
 
    public int getSellSuccessOrders() {
        return sellSuccessOrders;
    }
 
    public void setSellSuccessOrders(int sellSuccessOrders) {
        this.sellSuccessOrders = sellSuccessOrders;
    }
 
    public int getTotalSuccessOrders() {
        return totalSuccessOrders;
    }
 
    public void setTotalSuccessOrders(int totalSuccessOrders) {
        this.totalSuccessOrders = totalSuccessOrders;
    }
 
    public int getAppraiseGood() {
        return appraiseGood;
    }
 
    public void setAppraiseGood(int appraiseGood) {
        this.appraiseGood = appraiseGood;
    }
 
    public int getAppraiseBad() {
        return appraiseBad;
    }
 
    public void setAppraiseBad(int appraiseBad) {
        this.appraiseBad = appraiseBad;
    }
 
    public int getOrderMailNoticeOpen() {
        return orderMailNoticeOpen;
    }
 
    public void setOrderMailNoticeOpen(int orderMailNoticeOpen) {
        this.orderMailNoticeOpen = orderMailNoticeOpen;
    }
 
    public int getOrderSmsNoticeOpen() {
        return orderSmsNoticeOpen;
    }
 
    public void setOrderSmsNoticeOpen(int orderSmsNoticeOpen) {
        this.orderSmsNoticeOpen = orderSmsNoticeOpen;
    }
 
    public int getOrderAppNoticeOpen() {
        return orderAppNoticeOpen;
    }
 
    public void setOrderAppNoticeOpen(int orderAppNoticeOpen) {
        this.orderAppNoticeOpen = orderAppNoticeOpen;
    }
 
    public int getAppealMailNoticeOpen() {
        return appealMailNoticeOpen;
    }
 
    public void setAppealMailNoticeOpen(int appealMailNoticeOpen) {
        this.appealMailNoticeOpen = appealMailNoticeOpen;
    }
 
    public int getAppealSmsNoticeOpen() {
        return appealSmsNoticeOpen;
    }
 
    public void setAppealSmsNoticeOpen(int appealSmsNoticeOpen) {
        this.appealSmsNoticeOpen = appealSmsNoticeOpen;
    }
 
    public int getAppealAppNoticeOpen() {
        return appealAppNoticeOpen;
    }
 
    public void setAppealAppNoticeOpen(int appealAppNoticeOpen) {
        this.appealAppNoticeOpen = appealAppNoticeOpen;
    }
 
    public int getChatAppNoticeOpen() {
        return chatAppNoticeOpen;
    }
 
    public void setChatAppNoticeOpen(int chatAppNoticeOpen) {
        this.chatAppNoticeOpen = chatAppNoticeOpen;
    }
 
    public int getSecurityMailNoticeOpen() {
        return securityMailNoticeOpen;
    }
 
    public void setSecurityMailNoticeOpen(int securityMailNoticeOpen) {
        this.securityMailNoticeOpen = securityMailNoticeOpen;
    }
 
    public int getSecuritySmsNoticeOpen() {
        return securitySmsNoticeOpen;
    }
 
    public void setSecuritySmsNoticeOpen(int securitySmsNoticeOpen) {
        this.securitySmsNoticeOpen = securitySmsNoticeOpen;
    }
 
    public int getSecurityAppNoticeOpen() {
        return securityAppNoticeOpen;
    }
 
    public void setSecurityAppNoticeOpen(int securityAppNoticeOpen) {
        this.securityAppNoticeOpen = securityAppNoticeOpen;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    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;
    }
    
}