修改类
parent
11518b610e
commit
a45d5c2d41
|
@ -43,7 +43,7 @@ public class RechargeWithdrawCashRequest {
|
|||
/**
|
||||
* 用户名称
|
||||
*/
|
||||
private String username;
|
||||
private String userName;
|
||||
|
||||
/**
|
||||
* 绑定微信状态 1:未绑定 2:已绑定
|
||||
|
@ -128,12 +128,12 @@ public class RechargeWithdrawCashRequest {
|
|||
this.certifiedBankCardId = certifiedBankCardId;
|
||||
}
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
public String getUserName() {
|
||||
return userName;
|
||||
}
|
||||
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
public Integer getBindWechatStatus() {
|
||||
|
@ -195,14 +195,14 @@ public class RechargeWithdrawCashRequest {
|
|||
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) {
|
||||
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.userName = userName;
|
||||
this.bindWechatStatus = bindWechatStatus;
|
||||
this.realNameAuthenticationStatus = realNameAuthenticationStatus;
|
||||
this.bindBankCardStatus = bindBankCardStatus;
|
||||
|
|
Loading…
Reference in New Issue