xuhy
2025-01-09 712f70b2936079a131ecb1e63c6d337171618cad
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
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
package com.stylefeng.guns.modular.account.model;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 企业提现
 * </p>
 *
 * @author stylefeng
 * @since 2023-03-17
 */
@TableName("t_enterprise_withdrawal")
public class TEnterpriseWithdrawal extends Model<TEnterpriseWithdrawal> {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 分公司ID
     */
    private Integer companyId;
    /**
     * 企业类型 1企业 2个体工商户
     */
    private Integer enterpriseType;
    /**
     * 商户简称
     */
    private String merchantAbbreviation;
    /**
     * 营业执照
     */
    private String businessLicense;
    /**
     * 营业执照注册号
     */
    private String businessLicenseCode;
    /**
     * 营业执照公司名称
     */
    private String businessLicenseCompanyName;
    /**
     * 营业执照注册地址
     */
    private String businessLicenseAddress;
    /**
     * 营业期限
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private String businessExpireTime;
    /**
     * 统一社会信用代码
     */
    private String unifiedSocialCreditCode;
    /**
     * 统一社会信用代码期限
     */
    private String unifiedSocialCreditCodeExpireTime;
    /**
     * 公司联系电话
     */
    private String companyPhone;
    /**
     * 交易授权码
     */
    private String transactionAuthorizationCode;
    /**
     * 账户类型 1对私账户 2对公账户
     */
    private Integer accountType;
    /**
     * 开户银行
     */
    private String depositBank;
    /**
     * 开户银行编码
     */
    private String depositBankCode;
    /**
     * 开户名称
     */
    private String depositName;
    /**
     * 银行账号
     */
    private String bankAccount;
    /**
     * 法人姓名
     */
    private String corporateName;
    /**
     * 法人证件类型:1中国大陆居民-身份证、2其他国家或地区居民-护照、3-中国香港居民–来往内地通行证、4中国澳门居民– 来往内地通行证、5中国台湾居民– 来往大陆通行证
     */
    private Integer corporateCertificateType;
    /**
     * 证件号码
     */
    private String certificateCode;
    /**
     * 证件有效期
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private String certificateExpireTime;
    /**
     * 法人手机号
     */
    private String corporatePhone;
    /**
     * 法人身份证照片正反面
     */
    private String corporateIdCardFrontPicture;
    private String corporateIdCardReversePicture;
    /**
     * 是否审核通过 1待审核 2审核通过 3审核失败
     */
    private Integer isAudit;
    /**
     * 状态 1未删除 0已删除
     */
    private Integer status;
 
 
 
    /**
     * 创建时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date createTime;
 
    @TableField(exist = false)
    private String code;
 
 
 
 
 
 
 
 
   // 进件状态 checking:资料校验 account_need_verify:待账户验证 auditing:审核中 processing:处理中 signing:电子签约中 succeeded:已通过 failed:被驳回 frozen:已冻结   utf8mb4 utf8mb4_bin 0 0 0 0 0 0 0
    private String applicationStatus;
  //  varchar 64 0 -1 0 0 0    二级商户id   utf8mb4 utf8mb4_bin 0 0 0 0 0 0 0
    private String mchId;
    //datetime 0 0 -1 0 0 0    审核通过时间     0 0 0 0 0 0 0
    private Date auditedAt ;
//    varchar 64 0 -1 0 0 0    审核失败的字段名称   utf8mb4 utf8mb4_bin 0 0 0 0 0 0 0
    private String failureMsgsParam ;
    // varchar 64 0 -1 0 0 0    审核失败字段的被驳回原因   utf8mb4 utf8mb4_bin 0 0 0 0 0 0 0
    private String failureMsgsReason;
    //varchar 64 0 -1 0 0 0    电子账簿账簿号   utf8mb4 utf8mb4_bin 0 0 0 0 0 0 0
    private String relAcctNo ;
 
    @TableField(exist = false)
    private String copy1;
    @TableField(exist = false)
    private String copy2;
    @TableField(exist = false)
    private String copy3;
 
    //varchar 64 0 -1 0 0 0    银行生成的户名   utf8mb4 utf8mb4_bin 0 0 0 0 0 0 0
    private String bindAcctName ;
    //varchar 64 0 -1 0 0 0    电子账簿 ID   utf8mb4 utf8mb4_bin 0 0 0 0 0 0 0
    private String balanceAcctId;
    // varchar 64 0 -1 0 0 0    绑定账户 ID   utf8mb4 utf8mb4_bin 0 0 0 0 0 0 0
    private String settleAcctId;
 
    @TableField(exist = false)
    private String bankCode;
    @TableField(exist = false)
    private String bankBranchCode;
 
    public static long getSerialVersionUID() {
        return serialVersionUID;
    }
 
    public String getCopy1() {
        return copy1;
    }
 
    public void setCopy1(String copy1) {
        this.copy1 = copy1;
    }
 
    public String getCopy2() {
        return copy2;
    }
 
    public void setCopy2(String copy2) {
        this.copy2 = copy2;
    }
 
    public String getCopy3() {
        return copy3;
    }
 
    public void setCopy3(String copy3) {
        this.copy3 = copy3;
    }
 
    public String getApplicationStatus() {
        return applicationStatus;
    }
 
    public void setApplicationStatus(String applicationStatus) {
        this.applicationStatus = applicationStatus;
    }
 
    public String getMchId() {
        return mchId;
    }
 
    public void setMchId(String mchId) {
        this.mchId = mchId;
    }
 
    public Date getAuditedAt() {
        return auditedAt;
    }
 
    public void setAuditedAt(Date auditedAt) {
        this.auditedAt = auditedAt;
    }
 
    public String getFailureMsgsParam() {
        return failureMsgsParam;
    }
 
    public void setFailureMsgsParam(String failureMsgsParam) {
        this.failureMsgsParam = failureMsgsParam;
    }
 
    public String getFailureMsgsReason() {
        return failureMsgsReason;
    }
 
    public void setFailureMsgsReason(String failureMsgsReason) {
        this.failureMsgsReason = failureMsgsReason;
    }
 
    public String getRelAcctNo() {
        return relAcctNo;
    }
 
    public void setRelAcctNo(String relAcctNo) {
        this.relAcctNo = relAcctNo;
    }
 
    public String getBindAcctName() {
        return bindAcctName;
    }
 
    public void setBindAcctName(String bindAcctName) {
        this.bindAcctName = bindAcctName;
    }
 
    public String getBalanceAcctId() {
        return balanceAcctId;
    }
 
    public void setBalanceAcctId(String balanceAcctId) {
        this.balanceAcctId = balanceAcctId;
    }
 
    public String getSettleAcctId() {
        return settleAcctId;
    }
 
    public void setSettleAcctId(String settleAcctId) {
        this.settleAcctId = settleAcctId;
    }
 
 
 
    public String getBankCode() {
        return bankCode;
    }
 
    public void setBankCode(String bankCode) {
        this.bankCode = bankCode;
    }
 
    public String getBankBranchCode() {
        return bankBranchCode;
    }
 
    public void setBankBranchCode(String bankBranchCode) {
        this.bankBranchCode = bankBranchCode;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getCompanyId() {
        return companyId;
    }
 
    public void setCompanyId(Integer companyId) {
        this.companyId = companyId;
    }
 
    public Integer getEnterpriseType() {
        return enterpriseType;
    }
 
    public void setEnterpriseType(Integer enterpriseType) {
        this.enterpriseType = enterpriseType;
    }
 
    public String getMerchantAbbreviation() {
        return merchantAbbreviation;
    }
 
    public void setMerchantAbbreviation(String merchantAbbreviation) {
        this.merchantAbbreviation = merchantAbbreviation;
    }
 
    public String getBusinessLicense() {
        return businessLicense;
    }
 
    public void setBusinessLicense(String businessLicense) {
        this.businessLicense = businessLicense;
    }
 
    public String getBusinessLicenseCode() {
        return businessLicenseCode;
    }
 
    public void setBusinessLicenseCode(String businessLicenseCode) {
        this.businessLicenseCode = businessLicenseCode;
    }
 
    public String getCorporateIdCardFrontPicture() {
        return corporateIdCardFrontPicture;
    }
 
    public void setCorporateIdCardFrontPicture(String corporateIdCardFrontPicture) {
        this.corporateIdCardFrontPicture = corporateIdCardFrontPicture;
    }
 
    public String getCorporateIdCardReversePicture() {
        return corporateIdCardReversePicture;
    }
 
    public void setCorporateIdCardReversePicture(String corporateIdCardReversePicture) {
        this.corporateIdCardReversePicture = corporateIdCardReversePicture;
    }
 
    public String getBusinessLicenseCompanyName() {
        return businessLicenseCompanyName;
    }
 
    public void setBusinessLicenseCompanyName(String businessLicenseCompanyName) {
        this.businessLicenseCompanyName = businessLicenseCompanyName;
    }
 
    public String getBusinessLicenseAddress() {
        return businessLicenseAddress;
    }
 
    public void setBusinessLicenseAddress(String businessLicenseAddress) {
        this.businessLicenseAddress = businessLicenseAddress;
    }
 
    public String getBusinessExpireTime() {
        return businessExpireTime;
    }
 
    public void setBusinessExpireTime(String businessExpireTime) {
        this.businessExpireTime = businessExpireTime;
    }
 
    public String getUnifiedSocialCreditCode() {
        return unifiedSocialCreditCode;
    }
 
    public void setUnifiedSocialCreditCode(String unifiedSocialCreditCode) {
        this.unifiedSocialCreditCode = unifiedSocialCreditCode;
    }
 
    public String getUnifiedSocialCreditCodeExpireTime() {
        return unifiedSocialCreditCodeExpireTime;
    }
 
    public void setUnifiedSocialCreditCodeExpireTime(String unifiedSocialCreditCodeExpireTime) {
        this.unifiedSocialCreditCodeExpireTime = unifiedSocialCreditCodeExpireTime;
    }
 
    public String getCompanyPhone() {
        return companyPhone;
    }
 
    public void setCompanyPhone(String companyPhone) {
        this.companyPhone = companyPhone;
    }
 
    public String getTransactionAuthorizationCode() {
        return transactionAuthorizationCode;
    }
 
    public void setTransactionAuthorizationCode(String transactionAuthorizationCode) {
        this.transactionAuthorizationCode = transactionAuthorizationCode;
    }
 
    public Integer getAccountType() {
        return accountType;
    }
 
    public void setAccountType(Integer accountType) {
        this.accountType = accountType;
    }
 
    public String getDepositBank() {
        return depositBank;
    }
 
    public void setDepositBank(String depositBank) {
        this.depositBank = depositBank;
    }
 
    public String getDepositBankCode() {
        return depositBankCode;
    }
 
    public void setDepositBankCode(String depositBankCode) {
        this.depositBankCode = depositBankCode;
    }
 
    public String getDepositName() {
        return depositName;
    }
 
    public void setDepositName(String depositName) {
        this.depositName = depositName;
    }
 
    public String getBankAccount() {
        return bankAccount;
    }
 
    public void setBankAccount(String bankAccount) {
        this.bankAccount = bankAccount;
    }
 
    public String getCorporateName() {
        return corporateName;
    }
 
    public void setCorporateName(String corporateName) {
        this.corporateName = corporateName;
    }
 
    public Integer getCorporateCertificateType() {
        return corporateCertificateType;
    }
 
    public void setCorporateCertificateType(Integer corporateCertificateType) {
        this.corporateCertificateType = corporateCertificateType;
    }
 
    public String getCertificateCode() {
        return certificateCode;
    }
 
    public void setCertificateCode(String certificateCode) {
        this.certificateCode = certificateCode;
    }
 
    public String getCertificateExpireTime() {
        return certificateExpireTime;
    }
 
    public void setCertificateExpireTime(String certificateExpireTime) {
        this.certificateExpireTime = certificateExpireTime;
    }
 
    public String getCorporatePhone() {
        return corporatePhone;
    }
 
    public void setCorporatePhone(String corporatePhone) {
        this.corporatePhone = corporatePhone;
    }
 
    /**
     * 联系人邮箱
     */
    private String contactsEmail;
 
    /**
     * 系统订单号
     */
    private String mchApplicationId;
 
    /**
     * 平台订单号
     */
    private String outRequestNo;
 
    public String getContactsEmail() {
        return contactsEmail;
    }
 
    public void setContactsEmail(String contactsEmail) {
        this.contactsEmail = contactsEmail;
    }
 
    public String getMchApplicationId() {
        return mchApplicationId;
    }
 
    public void setMchApplicationId(String mchApplicationId) {
        this.mchApplicationId = mchApplicationId;
    }
 
    public String getOutRequestNo() {
        return outRequestNo;
    }
 
    public void setOutRequestNo(String outRequestNo) {
        this.outRequestNo = outRequestNo;
    }
 
 
    public Integer getIsAudit() {
        return isAudit;
    }
 
    public void setIsAudit(Integer isAudit) {
        this.isAudit = isAudit;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "TEnterpriseWithdrawal{" +
        "id=" + id +
        ", companyId=" + companyId +
        ", enterpriseType=" + enterpriseType +
        ", merchantAbbreviation=" + merchantAbbreviation +
        ", businessLicense=" + businessLicense +
        ", businessLicenseCode=" + businessLicenseCode +
        ", businessLicenseCompanyName=" + businessLicenseCompanyName +
        ", businessLicenseAddress=" + businessLicenseAddress +
        ", businessExpireTime=" + businessExpireTime +
        ", unifiedSocialCreditCode=" + unifiedSocialCreditCode +
        ", unifiedSocialCreditCodeExpireTime=" + unifiedSocialCreditCodeExpireTime +
        ", companyPhone=" + companyPhone +
        ", transactionAuthorizationCode=" + transactionAuthorizationCode +
        ", accountType=" + accountType +
        ", depositBank=" + depositBank +
        ", depositBankCode=" + depositBankCode +
        ", depositName=" + depositName +
        ", bankAccount=" + bankAccount +
        ", corporateName=" + corporateName +
        ", corporateCertificateType=" + corporateCertificateType +
        ", certificateCode=" + certificateCode +
        ", certificateExpireTime=" + certificateExpireTime +
        ", corporatePhone=" + corporatePhone +
        ", isAudit=" + isAudit +
        ", status=" + status +
        ", createTime=" + createTime +
        "}";
    }
}