package com.xc.pojo; import lombok.Data; import java.math.BigDecimal; import java.util.Date; /** * 提币 */ @Data public class UserWithdraw { private Integer id; private Integer userId; private String nickName; private Integer agentId; private BigDecimal withAmt;//提币的美元 private BigDecimal withAmtRMB;//提币的人民币 private Date applyTime; private Date transTime; private String withName; private String bankNo; private String bankName; private String bankAddress; private Integer withStatus; private BigDecimal withFee;//提币的美元手续费 private BigDecimal withFeeRMB;//提币的人民币手续费 private String withMsg; private String agentName; private String phone; public UserWithdraw(Integer id, Integer userId, String nickName, Integer agentId, BigDecimal withAmt, Date applyTime, Date transTime , String withName, String bankNo, String bankName, String bankAddress, Integer withStatus, BigDecimal withFee, String withMsg , BigDecimal withAmtRMB, BigDecimal withFeeRMB,String agentName, String phone) { this.id = id; this.userId = userId; this.nickName = nickName; this.agentId = agentId; this.withAmt = withAmt; this.applyTime = applyTime; this.transTime = transTime; this.withName = withName; this.bankNo = bankNo; this.bankName = bankName; this.bankAddress = bankAddress; this.withStatus = withStatus; this.withFee = withFee; this.withMsg = withMsg; this.withAmtRMB = withAmtRMB; this.withFeeRMB = withFeeRMB; this.agentName= agentName; this.phone = phone; } public UserWithdraw() { } }