From b4b7120d9c33cf1347767f5612dca66e616c571b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=A5=E6=88=90?= <13191486+tong-cheng666@user.noreply.gitee.com> Date: Fri, 20 Oct 2023 20:36:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/four/common/duck/my/User.java | 2 +- .../request/RechargeWithdrawCashRequest.java | 214 ++++++++++++++++++ 2 files changed, 215 insertions(+), 1 deletion(-) create mode 100644 src/main/java/com/four/common/duck/request/RechargeWithdrawCashRequest.java diff --git a/src/main/java/com/four/common/duck/my/User.java b/src/main/java/com/four/common/duck/my/User.java index c4f43c5..52d2a43 100644 --- a/src/main/java/com/four/common/duck/my/User.java +++ b/src/main/java/com/four/common/duck/my/User.java @@ -74,7 +74,7 @@ public class User { private BigDecimal userMoney; /** - * 余额 + * 邀请码 */ private String invitationCode; diff --git a/src/main/java/com/four/common/duck/request/RechargeWithdrawCashRequest.java b/src/main/java/com/four/common/duck/request/RechargeWithdrawCashRequest.java new file mode 100644 index 0000000..25039f4 --- /dev/null +++ b/src/main/java/com/four/common/duck/request/RechargeWithdrawCashRequest.java @@ -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; + } +}