AccountWithdrawalApplyDto.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. package com.java110.dto.accountWithdrawalApply;
  2. import com.java110.dto.PageDto;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. /**
  6. * @ClassName FloorDto
  7. * @Description 账户提现数据层封装
  8. * @Author wuxw
  9. * @Date 2019/4/24 8:52
  10. * @Version 1.0
  11. * add by wuxw 2019/4/24
  12. **/
  13. public class AccountWithdrawalApplyDto extends PageDto implements Serializable {
  14. private String applyId;
  15. private String applyUserName;
  16. private String amount;
  17. private String context;
  18. private String acctId;
  19. private String state;
  20. private String applyUserTel;
  21. private String applyUserId;
  22. private String stateName;
  23. private Date createTime;
  24. private String statusCd = "0";
  25. public String getApplyId() {
  26. return applyId;
  27. }
  28. public void setApplyId(String applyId) {
  29. this.applyId = applyId;
  30. }
  31. public String getApplyUserName() {
  32. return applyUserName;
  33. }
  34. public void setApplyUserName(String applyUserName) {
  35. this.applyUserName = applyUserName;
  36. }
  37. public String getAmount() {
  38. return amount;
  39. }
  40. public void setAmount(String amount) {
  41. this.amount = amount;
  42. }
  43. public String getContext() {
  44. return context;
  45. }
  46. public void setContext(String context) {
  47. this.context = context;
  48. }
  49. public String getAcctId() {
  50. return acctId;
  51. }
  52. public void setAcctId(String acctId) {
  53. this.acctId = acctId;
  54. }
  55. public String getState() {
  56. return state;
  57. }
  58. public void setState(String state) {
  59. this.state = state;
  60. }
  61. public String getApplyUserTel() {
  62. return applyUserTel;
  63. }
  64. public void setApplyUserTel(String applyUserTel) {
  65. this.applyUserTel = applyUserTel;
  66. }
  67. public String getApplyUserId() {
  68. return applyUserId;
  69. }
  70. public void setApplyUserId(String applyUserId) {
  71. this.applyUserId = applyUserId;
  72. }
  73. public Date getCreateTime() {
  74. return createTime;
  75. }
  76. public void setCreateTime(Date createTime) {
  77. this.createTime = createTime;
  78. }
  79. public String getStatusCd() {
  80. return statusCd;
  81. }
  82. public void setStatusCd(String statusCd) {
  83. this.statusCd = statusCd;
  84. }
  85. public String getStateName() {
  86. return stateName;
  87. }
  88. public void setStateName(String stateName) {
  89. this.stateName = stateName;
  90. }
  91. }