peter
2026-01-10 d3b5fbde186a47c0dc8b0b58d5688ae5691ed9e6
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
package com.nq.vo.user;
 
import java.math.BigDecimal;
import java.util.Date;
 
public class UserWithdrawVO {
 
    private Integer id;
 
    private Integer userId;
 
    private String nickName;
 
    private Integer agentId;
 
    private BigDecimal withAmt;
 
    private Date applyTime;
 
    private Date transTime;
 
    private String withName;
 
    private String bankNo;
 
    private String bankName;
 
    private String bankAddress;
 
    //銀行卡號
    private String bankImg;
    //轉數快ID
    private String bankPhone;
 
    private Integer withStatus;
 
    private BigDecimal withFee;
 
    private String withMsg;
 
 
    public String getBankImg() {
        return bankImg;
    }
 
    public void setBankImg(String bankImg) {
        this.bankImg = bankImg;
    }
 
    public String getBankPhone() {
        return bankPhone;
    }
 
    public void setBankPhone(String bankPhone) {
        this.bankPhone = bankPhone;
    }
 
    public UserWithdrawVO(){
 
    }
 
    public UserWithdrawVO(Integer id, Integer userId, String nickName, Integer agentId, BigDecimal withAmt, Date applyTime, Date transTime, String withName, String bankNo, String bankName, String bankAddress, String bankImg, String bankPhone, Integer withStatus, BigDecimal withFee, String withMsg) {
        this.id = id;
        this.userId = userId;
        this.nickName = nickName;
        this.agentId = agentId;
        this.withAmt = withAmt;
        this.applyTime = applyTime;
        this.transTime = transTime;
        this.withName = withName;
        this.bankNo = bankNo;
        this.bankName = bankName;
        this.bankAddress = bankAddress;
        this.bankImg = bankImg;
        this.bankPhone = bankPhone;
        this.withStatus = withStatus;
        this.withFee = withFee;
        this.withMsg = withMsg;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public String getNickName() {
        return nickName;
    }
 
    public void setNickName(String nickName) {
        this.nickName = nickName;
    }
 
    public Integer getAgentId() {
        return agentId;
    }
 
    public void setAgentId(Integer agentId) {
        this.agentId = agentId;
    }
 
    public BigDecimal getWithAmt() {
        return withAmt;
    }
 
    public void setWithAmt(BigDecimal withAmt) {
        this.withAmt = withAmt;
    }
 
    public Date getApplyTime() {
        return applyTime;
    }
 
    public void setApplyTime(Date applyTime) {
        this.applyTime = applyTime;
    }
 
    public Date getTransTime() {
        return transTime;
    }
 
    public void setTransTime(Date transTime) {
        this.transTime = transTime;
    }
 
    public String getWithName() {
        return withName;
    }
 
    public void setWithName(String withName) {
        this.withName = withName;
    }
 
    public String getBankNo() {
        return bankNo;
    }
 
    public void setBankNo(String bankNo) {
        this.bankNo = bankNo;
    }
 
    public String getBankName() {
        return bankName;
    }
 
    public void setBankName(String bankName) {
        this.bankName = bankName;
    }
 
    public String getBankAddress() {
        return bankAddress;
    }
 
    public void setBankAddress(String bankAddress) {
        this.bankAddress = bankAddress;
    }
 
    public Integer getWithStatus() {
        return withStatus;
    }
 
    public void setWithStatus(Integer withStatus) {
        this.withStatus = withStatus;
    }
 
    public BigDecimal getWithFee() {
        return withFee;
    }
 
    public void setWithFee(BigDecimal withFee) {
        this.withFee = withFee;
    }
 
    public String getWithMsg() {
        return withMsg;
    }
 
    public void setWithMsg(String withMsg) {
        this.withMsg = withMsg;
    }
}