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;
|
}
|
|
|
}
|