Helius
2021-06-16 5728be2af515b2200e782aa201ca5d4d67d9ea47
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
package com.ibeetl.admin.core.entity;
 
import com.ibeetl.admin.core.util.ValidateConfig;
import org.beetl.sql.core.annotatoin.AutoID;
import org.beetl.sql.core.annotatoin.InsertIgnore;
import org.beetl.sql.core.annotatoin.LogicDelete;
import org.beetl.sql.core.annotatoin.SeqID;
 
import javax.validation.constraints.NotNull;
 
 
/* 
* 提现申请表
* gen by Spring Boot2 Admin 2020-01-19
*/
public class XzxPayRequestInfo extends BaseEntity{
 
    @NotNull(message = "ID不能为空", groups =ValidateConfig.UPDATE.class)
    @SeqID(name = ORACLE_CORE_SEQ_NAME)
    @AutoID    
 
    private String payOrderId ;
    
 
    private String orderId ;
    
 
    private String createUserId ;
    
    //金额
 
    private String money ;
    
 
    private String accountId ;
    
    //4:提现 7:额度申请 8 实名认证 9额度恢复
 
    private String payType ;
    
    //微信open_id
 
    private String openId ;
    
    //审核状态(1为待审核,2为已审核,3为审核不通过)
 
    private String status ;
    
    //创建时间
 
    private String createTime ;
    
    //微信支付类型1:小程序红包支付2:微信企业支付
 
    private Integer wxpayFlag ;
    
    //支付状态1:待支付2:支付成功3:支付失败
 
    private Integer payFlag ;
    
    //不通过原因
 
    private String unpassReason ;
    
    //审核时间
 
    private String examineTime ;
    
    //第三方账号或银行卡绑定ID
 
    private Long accountBindId ;
    
    //审核时间
 
    private String updateTime ;
    
    //审核人
 
    private String updateUserId ;
 
    private Integer delFlag ;
    
    public XzxPayRequestInfo(){
    }
 
    public String getPayOrderId(){
        return  payOrderId;
    }
    public void setPayOrderId(String payOrderId){
        this.payOrderId = payOrderId;
    }
 
    public String getOrderId(){
        return  orderId;
    }
    public void setOrderId(String orderId){
        this.orderId = orderId;
    }
 
    public String getCreateUserId(){
        return  createUserId;
    }
    public void setCreateUserId(String createUserId){
        this.createUserId = createUserId;
    }
 
    /**金额
    *@return 
    */
    public String getMoney(){
        return  money;
    }
    /**金额
    *@param  money
    */
    public void setMoney(String money){
        this.money = money;
    }
 
    public String getAccountId(){
        return  accountId;
    }
    public void setAccountId(String accountId){
        this.accountId = accountId;
    }
 
    /**4:提现 7:额度申请 8 实名认证 9额度恢复
    *@return 
    */
    public String getPayType(){
        return  payType;
    }
    /**4:提现 7:额度申请 8 实名认证 9额度恢复
    *@param  payType
    */
    public void setPayType(String payType){
        this.payType = payType;
    }
 
    /**微信open_id
    *@return 
    */
    public String getOpenId(){
        return  openId;
    }
    /**微信open_id
    *@param  openId
    */
    public void setOpenId(String openId){
        this.openId = openId;
    }
 
    /**审核状态(1为待审核,2为已审核,3为审核不通过)
    *@return 
    */
    public String getStatus(){
        return  status;
    }
    /**审核状态(1为待审核,2为已审核,3为审核不通过)
    *@param  status
    */
    public void setStatus(String status){
        this.status = status;
    }
 
    /**创建时间
    *@return 
    */
    public String getCreateTime(){
        return  createTime;
    }
    /**创建时间
    *@param  createTime
    */
    public void setCreateTime(String createTime){
        this.createTime = createTime;
    }
 
    /**微信支付类型1:小程序红包支付2:微信企业支付
    *@return 
    */
    public Integer getWxpayFlag(){
        return  wxpayFlag;
    }
    /**微信支付类型1:小程序红包支付2:微信企业支付
    *@param  wxpayFlag
    */
    public void setWxpayFlag(Integer wxpayFlag){
        this.wxpayFlag = wxpayFlag;
    }
 
    /**支付状态1:待支付2:支付成功3:支付失败
    *@return 
    */
    public Integer getPayFlag(){
        return  payFlag;
    }
    /**支付状态1:待支付2:支付成功3:支付失败
    *@param  payFlag
    */
    public void setPayFlag(Integer payFlag){
        this.payFlag = payFlag;
    }
 
    /**不通过原因
    *@return 
    */
    public String getUnpassReason(){
        return  unpassReason;
    }
    /**不通过原因
    *@param  unpassReason
    */
    public void setUnpassReason(String unpassReason){
        this.unpassReason = unpassReason;
    }
 
    /**审核时间
    *@return 
    */
    public String getExamineTime(){
        return  examineTime;
    }
    /**审核时间
    *@param  examineTime
    */
    public void setExamineTime(String examineTime){
        this.examineTime = examineTime;
    }
 
    /**第三方账号或银行卡绑定ID
    *@return 
    */
    public Long getAccountBindId(){
        return  accountBindId;
    }
    /**第三方账号或银行卡绑定ID
    *@param  accountBindId
    */
    public void setAccountBindId(Long accountBindId){
        this.accountBindId = accountBindId;
    }
 
    /**审核时间
    *@return 
    */
    public String getUpdateTime(){
        return  updateTime;
    }
    /**审核时间
    *@param  updateTime
    */
    public void setUpdateTime(String updateTime){
        this.updateTime = updateTime;
    }
 
    /**审核人
    *@return 
    */
    public String getUpdateUserId(){
        return  updateUserId;
    }
    /**审核人
    *@param  updateUserId
    */
    public void setUpdateUserId(String updateUserId){
        this.updateUserId = updateUserId;
    }
 
    /**是否已经删除(0:正常,1:已经删除)
    *@return 
    */
    public Integer getDelFlag(){
        return  delFlag;
    }
    /**是否已经删除(0:正常,1:已经删除)
    *@param  delFlag
    */
    public void setDelFlag(Integer delFlag){
        this.delFlag = delFlag;
    }
 
 
}