UserWithdraw.java 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.xc.pojo;
  2. import lombok.Data;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * 提币
  7. */
  8. @Data
  9. public class UserWithdraw {
  10. private Integer id;
  11. private Integer userId;
  12. private String nickName;
  13. private Integer agentId;
  14. private BigDecimal withAmt;//提币的美元
  15. private BigDecimal withAmtRMB;//提币的人民币
  16. private Date applyTime;
  17. private Date transTime;
  18. private String withName;
  19. private String bankNo;
  20. private String bankName;
  21. private String bankAddress;
  22. private Integer withStatus;
  23. private BigDecimal withFee;//提币的美元手续费
  24. private BigDecimal withFeeRMB;//提币的人民币手续费
  25. private String withMsg;
  26. private String agentName;
  27. private String phone;
  28. public UserWithdraw(Integer id, Integer userId, String nickName, Integer agentId, BigDecimal withAmt, Date applyTime, Date transTime
  29. , String withName, String bankNo, String bankName, String bankAddress, Integer withStatus, BigDecimal withFee, String withMsg
  30. , BigDecimal withAmtRMB, BigDecimal withFeeRMB,String agentName, String phone) {
  31. this.id = id;
  32. this.userId = userId;
  33. this.nickName = nickName;
  34. this.agentId = agentId;
  35. this.withAmt = withAmt;
  36. this.applyTime = applyTime;
  37. this.transTime = transTime;
  38. this.withName = withName;
  39. this.bankNo = bankNo;
  40. this.bankName = bankName;
  41. this.bankAddress = bankAddress;
  42. this.withStatus = withStatus;
  43. this.withFee = withFee;
  44. this.withMsg = withMsg;
  45. this.withAmtRMB = withAmtRMB;
  46. this.withFeeRMB = withFeeRMB;
  47. this.agentName= agentName;
  48. this.phone = phone;
  49. }
  50. public UserWithdraw() {
  51. }
  52. }