添加类
parent
b7949d46cb
commit
b4b7120d9c
|
@ -74,7 +74,7 @@ public class User {
|
|||
private BigDecimal userMoney;
|
||||
|
||||
/**
|
||||
* 余额
|
||||
* 邀请码
|
||||
*/
|
||||
private String invitationCode;
|
||||
|
||||
|
|
|
@ -0,0 +1,214 @@
|
|||
package com.four.common.duck.request;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @author: tongCheng
|
||||
* @Package: four-common-duck
|
||||
* @ClassName: RechargeWithdrawCashRequest
|
||||
* @date: 2023-10-20 20:25
|
||||
**/
|
||||
public class RechargeWithdrawCashRequest {
|
||||
/**
|
||||
* 充值+提现id
|
||||
*/
|
||||
private Integer rechargeWithdrawCashId;
|
||||
|
||||
/**
|
||||
* 充值+提现用户id
|
||||
*/
|
||||
private Integer userId;
|
||||
|
||||
/**
|
||||
* 充值+提现金额
|
||||
*/
|
||||
private BigDecimal money;
|
||||
|
||||
/**
|
||||
* 充值+提现时间
|
||||
*/
|
||||
private Date time;
|
||||
|
||||
/**
|
||||
* 状态:1:提现 2:充值+签到
|
||||
*/
|
||||
private Integer status;
|
||||
|
||||
/**
|
||||
* 用户的实名认证和银行卡id
|
||||
*/
|
||||
private Integer certifiedBankCardId;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
*/
|
||||
private String username;
|
||||
|
||||
/**
|
||||
* 绑定微信状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer bindWechatStatus;
|
||||
|
||||
/**
|
||||
* 实名认证状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer realNameAuthenticationStatus;
|
||||
|
||||
/**
|
||||
* 绑定银行卡状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer bindBankCardStatus;
|
||||
|
||||
/**
|
||||
* 余额
|
||||
*/
|
||||
private BigDecimal userMoney;
|
||||
|
||||
/**
|
||||
* 身份证号
|
||||
*/
|
||||
private Integer idNumber;
|
||||
|
||||
/**
|
||||
* 开户行:银行名称
|
||||
*/
|
||||
private String bankName;
|
||||
|
||||
/**
|
||||
* 银行卡号
|
||||
*/
|
||||
private String bankCardNumber;
|
||||
|
||||
public Integer getRechargeWithdrawCashId() {
|
||||
return rechargeWithdrawCashId;
|
||||
}
|
||||
|
||||
public void setRechargeWithdrawCashId(Integer rechargeWithdrawCashId) {
|
||||
this.rechargeWithdrawCashId = rechargeWithdrawCashId;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public BigDecimal getMoney() {
|
||||
return money;
|
||||
}
|
||||
|
||||
public void setMoney(BigDecimal money) {
|
||||
this.money = money;
|
||||
}
|
||||
|
||||
public Date getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public void setTime(Date time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getCertifiedBankCardId() {
|
||||
return certifiedBankCardId;
|
||||
}
|
||||
|
||||
public void setCertifiedBankCardId(Integer certifiedBankCardId) {
|
||||
this.certifiedBankCardId = certifiedBankCardId;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
public Integer getBindWechatStatus() {
|
||||
return bindWechatStatus;
|
||||
}
|
||||
|
||||
public void setBindWechatStatus(Integer bindWechatStatus) {
|
||||
this.bindWechatStatus = bindWechatStatus;
|
||||
}
|
||||
|
||||
public Integer getRealNameAuthenticationStatus() {
|
||||
return realNameAuthenticationStatus;
|
||||
}
|
||||
|
||||
public void setRealNameAuthenticationStatus(Integer realNameAuthenticationStatus) {
|
||||
this.realNameAuthenticationStatus = realNameAuthenticationStatus;
|
||||
}
|
||||
|
||||
public Integer getBindBankCardStatus() {
|
||||
return bindBankCardStatus;
|
||||
}
|
||||
|
||||
public void setBindBankCardStatus(Integer bindBankCardStatus) {
|
||||
this.bindBankCardStatus = bindBankCardStatus;
|
||||
}
|
||||
|
||||
public BigDecimal getUserMoney() {
|
||||
return userMoney;
|
||||
}
|
||||
|
||||
public void setUserMoney(BigDecimal userMoney) {
|
||||
this.userMoney = userMoney;
|
||||
}
|
||||
|
||||
public Integer getIdNumber() {
|
||||
return idNumber;
|
||||
}
|
||||
|
||||
public void setIdNumber(Integer idNumber) {
|
||||
this.idNumber = idNumber;
|
||||
}
|
||||
|
||||
public String getBankName() {
|
||||
return bankName;
|
||||
}
|
||||
|
||||
public void setBankName(String bankName) {
|
||||
this.bankName = bankName;
|
||||
}
|
||||
|
||||
public String getBankCardNumber() {
|
||||
return bankCardNumber;
|
||||
}
|
||||
|
||||
public void setBankCardNumber(String bankCardNumber) {
|
||||
this.bankCardNumber = bankCardNumber;
|
||||
}
|
||||
|
||||
public RechargeWithdrawCashRequest() {
|
||||
}
|
||||
|
||||
public RechargeWithdrawCashRequest(Integer rechargeWithdrawCashId, Integer userId, BigDecimal money, Date time, Integer status, Integer certifiedBankCardId, String username, Integer bindWechatStatus, Integer realNameAuthenticationStatus, Integer bindBankCardStatus, BigDecimal userMoney, Integer idNumber, String bankName, String bankCardNumber) {
|
||||
this.rechargeWithdrawCashId = rechargeWithdrawCashId;
|
||||
this.userId = userId;
|
||||
this.money = money;
|
||||
this.time = time;
|
||||
this.status = status;
|
||||
this.certifiedBankCardId = certifiedBankCardId;
|
||||
this.username = username;
|
||||
this.bindWechatStatus = bindWechatStatus;
|
||||
this.realNameAuthenticationStatus = realNameAuthenticationStatus;
|
||||
this.bindBankCardStatus = bindBankCardStatus;
|
||||
this.userMoney = userMoney;
|
||||
this.idNumber = idNumber;
|
||||
this.bankName = bankName;
|
||||
this.bankCardNumber = bankCardNumber;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue