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