shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
 
package com.ishop.model.po;
 
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.walker.jdbc.BasePo;
 
/**
 * 表名:EB_USER_CLOSING *
 * @author genrator
 */
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
public class EbUserClosing extends BasePo<EbUserClosing> {
    // 序列化版本号
    private static final long serialVersionUID = 1L;
 
    // 主键
    private Long id = null;
    @JsonIgnore
    protected boolean isset_id = false;
 
    // 属性列表
    private String closingNo = null;
    @JsonIgnore
    protected boolean isset_closingNo = false;
 
    private Long uid = null;
    @JsonIgnore
    protected boolean isset_uid = false;
 
    private String closingType = null;
    @JsonIgnore
    protected boolean isset_closingType = false;
 
    private String cardholder = null;
    @JsonIgnore
    protected boolean isset_cardholder = false;
 
    private String bankCardNo = null;
    @JsonIgnore
    protected boolean isset_bankCardNo = false;
 
    private String bankName = null;
    @JsonIgnore
    protected boolean isset_bankName = false;
 
    private String bankAddress = null;
    @JsonIgnore
    protected boolean isset_bankAddress = false;
 
    private String alipayAccount = null;
    @JsonIgnore
    protected boolean isset_alipayAccount = false;
 
    private String wechatNo = null;
    @JsonIgnore
    protected boolean isset_wechatNo = false;
 
    private String paymentCode = null;
    @JsonIgnore
    protected boolean isset_paymentCode = false;
 
    private Double closingPrice = null;
    @JsonIgnore
    protected boolean isset_closingPrice = false;
 
    private Double balance = null;
    @JsonIgnore
    protected boolean isset_balance = false;
 
    private String mark = null;
    @JsonIgnore
    protected boolean isset_mark = false;
 
    private Integer auditStatus = null;
    @JsonIgnore
    protected boolean isset_auditStatus = false;
 
    private String refusalReason = null;
    @JsonIgnore
    protected boolean isset_refusalReason = false;
 
    private Long auditId = null;
    @JsonIgnore
    protected boolean isset_auditId = false;
 
    private Long auditTime = null;
    @JsonIgnore
    protected boolean isset_auditTime = false;
 
    private Integer accountStatus = null;
    @JsonIgnore
    protected boolean isset_accountStatus = false;
 
    private String closingProof = null;
    @JsonIgnore
    protected boolean isset_closingProof = false;
 
    private Long closingTime = null;
    @JsonIgnore
    protected boolean isset_closingTime = false;
 
    private Long createTime = null;
    @JsonIgnore
    protected boolean isset_createTime = false;
 
    private Long updateTime = null;
    @JsonIgnore
    protected boolean isset_updateTime = false;
 
    private String realName = null;
    @JsonIgnore
    protected boolean isset_realName = false;
 
    /**
     * 默认构造函数
     */
    public EbUserClosing() {
    }
 
    /**
     * 根据主键构造对象
     */
    public EbUserClosing(Long id) {
        this.setId(id);
    }
 
    /**
     * 设置主键值
     */
    @Override
    public void setPkValue(Object value) {
        this.setId((Long) value);
    }
 
    public Long getId() {
        return this.id;
    }
 
    public void setId(Long id) {
        this.id = id;
        this.isset_id = true;
    }
 
    @JsonIgnore
    public boolean isEmptyId() {
        return this.id == null;
    }
 
    public String getClosingNo() {
        return this.closingNo;
    }
 
    public void setClosingNo(String closingNo) {
        this.closingNo = closingNo;
        this.isset_closingNo = true;
    }
 
    @JsonIgnore
    public boolean isEmptyClosingNo() {
        return this.closingNo == null || this.closingNo.length() == 0;
    }
 
    public Long getUid() {
        return this.uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
        this.isset_uid = true;
    }
 
    @JsonIgnore
    public boolean isEmptyUid() {
        return this.uid == null;
    }
 
    public String getClosingType() {
        return this.closingType;
    }
 
    public void setClosingType(String closingType) {
        this.closingType = closingType;
        this.isset_closingType = true;
    }
 
    @JsonIgnore
    public boolean isEmptyClosingType() {
        return this.closingType == null || this.closingType.length() == 0;
    }
 
    public String getCardholder() {
        return this.cardholder;
    }
 
    public void setCardholder(String cardholder) {
        this.cardholder = cardholder;
        this.isset_cardholder = true;
    }
 
    @JsonIgnore
    public boolean isEmptyCardholder() {
        return this.cardholder == null || this.cardholder.length() == 0;
    }
 
    public String getBankCardNo() {
        return this.bankCardNo;
    }
 
    public void setBankCardNo(String bankCardNo) {
        this.bankCardNo = bankCardNo;
        this.isset_bankCardNo = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBankCardNo() {
        return this.bankCardNo == null || this.bankCardNo.length() == 0;
    }
 
    public String getBankName() {
        return this.bankName;
    }
 
    public void setBankName(String bankName) {
        this.bankName = bankName;
        this.isset_bankName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBankName() {
        return this.bankName == null || this.bankName.length() == 0;
    }
 
    public String getBankAddress() {
        return this.bankAddress;
    }
 
    public void setBankAddress(String bankAddress) {
        this.bankAddress = bankAddress;
        this.isset_bankAddress = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBankAddress() {
        return this.bankAddress == null || this.bankAddress.length() == 0;
    }
 
    public String getAlipayAccount() {
        return this.alipayAccount;
    }
 
    public void setAlipayAccount(String alipayAccount) {
        this.alipayAccount = alipayAccount;
        this.isset_alipayAccount = true;
    }
 
    @JsonIgnore
    public boolean isEmptyAlipayAccount() {
        return this.alipayAccount == null || this.alipayAccount.length() == 0;
    }
 
    public String getWechatNo() {
        return this.wechatNo;
    }
 
    public void setWechatNo(String wechatNo) {
        this.wechatNo = wechatNo;
        this.isset_wechatNo = true;
    }
 
    @JsonIgnore
    public boolean isEmptyWechatNo() {
        return this.wechatNo == null || this.wechatNo.length() == 0;
    }
 
    public String getPaymentCode() {
        return this.paymentCode;
    }
 
    public void setPaymentCode(String paymentCode) {
        this.paymentCode = paymentCode;
        this.isset_paymentCode = true;
    }
 
    @JsonIgnore
    public boolean isEmptyPaymentCode() {
        return this.paymentCode == null || this.paymentCode.length() == 0;
    }
 
    public Double getClosingPrice() {
        return this.closingPrice;
    }
 
    public void setClosingPrice(Double closingPrice) {
        this.closingPrice = closingPrice;
        this.isset_closingPrice = true;
    }
 
    @JsonIgnore
    public boolean isEmptyClosingPrice() {
        return this.closingPrice == null;
    }
 
    public Double getBalance() {
        return this.balance;
    }
 
    public void setBalance(Double balance) {
        this.balance = balance;
        this.isset_balance = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBalance() {
        return this.balance == null;
    }
 
    public String getMark() {
        return this.mark;
    }
 
    public void setMark(String mark) {
        this.mark = mark;
        this.isset_mark = true;
    }
 
    @JsonIgnore
    public boolean isEmptyMark() {
        return this.mark == null || this.mark.length() == 0;
    }
 
    public Integer getAuditStatus() {
        return this.auditStatus;
    }
 
    public void setAuditStatus(Integer auditStatus) {
        this.auditStatus = auditStatus;
        this.isset_auditStatus = true;
    }
 
    @JsonIgnore
    public boolean isEmptyAuditStatus() {
        return this.auditStatus == null;
    }
 
    public String getRefusalReason() {
        return this.refusalReason;
    }
 
    public void setRefusalReason(String refusalReason) {
        this.refusalReason = refusalReason;
        this.isset_refusalReason = true;
    }
 
    @JsonIgnore
    public boolean isEmptyRefusalReason() {
        return this.refusalReason == null || this.refusalReason.length() == 0;
    }
 
    public Long getAuditId() {
        return this.auditId;
    }
 
    public void setAuditId(Long auditId) {
        this.auditId = auditId;
        this.isset_auditId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyAuditId() {
        return this.auditId == null;
    }
 
    public Long getAuditTime() {
        return this.auditTime;
    }
 
    public void setAuditTime(Long auditTime) {
        this.auditTime = auditTime;
        this.isset_auditTime = true;
    }
 
    @JsonIgnore
    public boolean isEmptyAuditTime() {
        return this.auditTime == null;
    }
 
    public Integer getAccountStatus() {
        return this.accountStatus;
    }
 
    public void setAccountStatus(Integer accountStatus) {
        this.accountStatus = accountStatus;
        this.isset_accountStatus = true;
    }
 
    @JsonIgnore
    public boolean isEmptyAccountStatus() {
        return this.accountStatus == null;
    }
 
    public String getClosingProof() {
        return this.closingProof;
    }
 
    public void setClosingProof(String closingProof) {
        this.closingProof = closingProof;
        this.isset_closingProof = true;
    }
 
    @JsonIgnore
    public boolean isEmptyClosingProof() {
        return this.closingProof == null || this.closingProof.length() == 0;
    }
 
    public Long getClosingTime() {
        return this.closingTime;
    }
 
    public void setClosingTime(Long closingTime) {
        this.closingTime = closingTime;
        this.isset_closingTime = true;
    }
 
    @JsonIgnore
    public boolean isEmptyClosingTime() {
        return this.closingTime == null;
    }
 
    public Long getCreateTime() {
        return this.createTime;
    }
 
    public void setCreateTime(Long createTime) {
        this.createTime = createTime;
        this.isset_createTime = true;
    }
 
    @JsonIgnore
    public boolean isEmptyCreateTime() {
        return this.createTime == null;
    }
 
    public Long getUpdateTime() {
        return this.updateTime;
    }
 
    public void setUpdateTime(Long updateTime) {
        this.updateTime = updateTime;
        this.isset_updateTime = true;
    }
 
    @JsonIgnore
    public boolean isEmptyUpdateTime() {
        return this.updateTime == null;
    }
 
    public String getRealName() {
        return this.realName;
    }
 
    public void setRealName(String realName) {
        this.realName = realName;
        this.isset_realName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyRealName() {
        return this.realName == null || this.realName.length() == 0;
    }
 
    /**
     * 重写 toString() 方法
     */
    @Override
    public String toString() {
        return new StringBuilder()
                .append("id=").append(this.id)
                .append("closingNo=").append(this.closingNo)
                .append("uid=").append(this.uid)
                .append("closingType=").append(this.closingType)
                .append("cardholder=").append(this.cardholder)
                .append("bankCardNo=").append(this.bankCardNo)
                .append("bankName=").append(this.bankName)
                .append("bankAddress=").append(this.bankAddress)
                .append("alipayAccount=").append(this.alipayAccount)
                .append("wechatNo=").append(this.wechatNo)
                .append("paymentCode=").append(this.paymentCode)
                .append("closingPrice=").append(this.closingPrice)
                .append("balance=").append(this.balance)
                .append("mark=").append(this.mark)
                .append("auditStatus=").append(this.auditStatus)
                .append("refusalReason=").append(this.refusalReason)
                .append("auditId=").append(this.auditId)
                .append("auditTime=").append(this.auditTime)
                .append("accountStatus=").append(this.accountStatus)
                .append("closingProof=").append(this.closingProof)
                .append("closingTime=").append(this.closingTime)
                .append("createTime=").append(this.createTime)
                .append("updateTime=").append(this.updateTime)
                .append("realName=").append(this.realName)
                .toString();
    }
 
    /**
     * 克隆
     */
    public EbUserClosing $clone() {
        EbUserClosing eb_user_closing = new EbUserClosing();
 
        // 数据库名称
        //eb_user_closing.setDatabaseName_(this.getDatabaseName_());
 
        // 主键
        if (this.isset_id) {
            eb_user_closing.setId(this.getId());
        }
        // 普通属性
        if (this.isset_closingNo) {
            eb_user_closing.setClosingNo(this.getClosingNo());
        }
        if (this.isset_uid) {
            eb_user_closing.setUid(this.getUid());
        }
        if (this.isset_closingType) {
            eb_user_closing.setClosingType(this.getClosingType());
        }
        if (this.isset_cardholder) {
            eb_user_closing.setCardholder(this.getCardholder());
        }
        if (this.isset_bankCardNo) {
            eb_user_closing.setBankCardNo(this.getBankCardNo());
        }
        if (this.isset_bankName) {
            eb_user_closing.setBankName(this.getBankName());
        }
        if (this.isset_bankAddress) {
            eb_user_closing.setBankAddress(this.getBankAddress());
        }
        if (this.isset_alipayAccount) {
            eb_user_closing.setAlipayAccount(this.getAlipayAccount());
        }
        if (this.isset_wechatNo) {
            eb_user_closing.setWechatNo(this.getWechatNo());
        }
        if (this.isset_paymentCode) {
            eb_user_closing.setPaymentCode(this.getPaymentCode());
        }
        if (this.isset_closingPrice) {
            eb_user_closing.setClosingPrice(this.getClosingPrice());
        }
        if (this.isset_balance) {
            eb_user_closing.setBalance(this.getBalance());
        }
        if (this.isset_mark) {
            eb_user_closing.setMark(this.getMark());
        }
        if (this.isset_auditStatus) {
            eb_user_closing.setAuditStatus(this.getAuditStatus());
        }
        if (this.isset_refusalReason) {
            eb_user_closing.setRefusalReason(this.getRefusalReason());
        }
        if (this.isset_auditId) {
            eb_user_closing.setAuditId(this.getAuditId());
        }
        if (this.isset_auditTime) {
            eb_user_closing.setAuditTime(this.getAuditTime());
        }
        if (this.isset_accountStatus) {
            eb_user_closing.setAccountStatus(this.getAccountStatus());
        }
        if (this.isset_closingProof) {
            eb_user_closing.setClosingProof(this.getClosingProof());
        }
        if (this.isset_closingTime) {
            eb_user_closing.setClosingTime(this.getClosingTime());
        }
        if (this.isset_createTime) {
            eb_user_closing.setCreateTime(this.getCreateTime());
        }
        if (this.isset_updateTime) {
            eb_user_closing.setUpdateTime(this.getUpdateTime());
        }
        if (this.isset_realName) {
            eb_user_closing.setRealName(this.getRealName());
        }
        return eb_user_closing;
    }
}