diff --git a/src/main/java/com/four/common/duck/request/RechargeWithdrawCashRequest.java b/src/main/java/com/four/common/duck/request/RechargeWithdrawCashRequest.java index 25039f4..cac5ad5 100644 --- a/src/main/java/com/four/common/duck/request/RechargeWithdrawCashRequest.java +++ b/src/main/java/com/four/common/duck/request/RechargeWithdrawCashRequest.java @@ -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;