123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- 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() {
- }
- }
|