xuhy
2025-01-07 e29bb239dc2a5d4d0eee765d870522ad877e03e4
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
package com.stylefeng.guns.modular.system.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 java.math.BigDecimal;
import java.util.Date;
 
/**
 * 提现
 */
@TableName("t_withdrawal")
public class TWithdrawal {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    @TableField("id")
    private Integer id;
    /**
     * 司机id
     */
    @TableField("driverId")
    private Integer driverId;
    /**
     * 收款人姓名
     */
    @TableField("receivePaymentName")
    private String receivePaymentName;
    /**
     * 收款账号
     */
    @TableField("receivePaymentAccount")
    private String receivePaymentAccount;
    /**
     * 提现方式 1=支付宝 2=银行卡
     */
    @TableField("withdrawalType")
    private Integer withdrawalType;
 
 
    /**
     * 提现金额
     */
    @TableField("withdrawalMoney")
    private BigDecimal withdrawalMoney;
    /**
     * 提现时间
     */
    @TableField("withdrawalTime")
    private Date withdrawalTime;
    /**
     * 提现状态 1=待处理 2=成功 3=失败
     */
    @TableField("status")
    private Integer status;
 
    /**
     * 开户行
     */
    @TableField("openBank")
    private String openBank;
    /**
     * 备注
     */
    @TableField("remark")
    private String remark;
    /**
     * 到帐凭证
     */
    @TableField("receiptVoucher")
    private String receiptVoucher;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getDriverId() {
        return driverId;
    }
 
    public void setDriverId(Integer driverId) {
        this.driverId = driverId;
    }
 
    public String getReceivePaymentName() {
        return receivePaymentName;
    }
 
    public void setReceivePaymentName(String receivePaymentName) {
        this.receivePaymentName = receivePaymentName;
    }
 
    public String getReceivePaymentAccount() {
        return receivePaymentAccount;
    }
 
    public void setReceivePaymentAccount(String receivePaymentAccount) {
        this.receivePaymentAccount = receivePaymentAccount;
    }
 
    public Integer getWithdrawalType() {
        return withdrawalType;
    }
 
    public void setWithdrawalType(Integer withdrawalType) {
        this.withdrawalType = withdrawalType;
    }
 
    public BigDecimal getWithdrawalMoney() {
        return withdrawalMoney;
    }
 
    public void setWithdrawalMoney(BigDecimal withdrawalMoney) {
        this.withdrawalMoney = withdrawalMoney;
    }
 
    public Date getWithdrawalTime() {
        return withdrawalTime;
    }
 
    public void setWithdrawalTime(Date withdrawalTime) {
        this.withdrawalTime = withdrawalTime;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public String getOpenBank() {
        return openBank;
    }
 
    public void setOpenBank(String openBank) {
        this.openBank = openBank;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getReceiptVoucher() {
        return receiptVoucher;
    }
 
    public void setReceiptVoucher(String receiptVoucher) {
        this.receiptVoucher = receiptVoucher;
    }
 
    @Override
    public String toString() {
        return "TWithdrawal{" +
                "id=" + id +
                ", driverId=" + driverId +
                ", receivePaymentName='" + receivePaymentName + '\'' +
                ", receivePaymentAccount='" + receivePaymentAccount + '\'' +
                ", withdrawalType=" + withdrawalType +
                ", withdrawalMoney=" + withdrawalMoney +
                ", withdrawalTime=" + withdrawalTime +
                ", status=" + status +
                ", openBank='" + openBank + '\'' +
                ", remark='" + remark + '\'' +
                ", receiptVoucher='" + receiptVoucher + '\'' +
                '}';
    }
}