ApplyUseMoney.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. package com.idea.oa.apply.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. public class ApplyUseMoney implements Serializable {
  5. private String id;
  6. private String proId;
  7. private String useReasons;
  8. private String payeeName;
  9. private String bankName;
  10. private String bankAccountNum;
  11. private String makeNum;
  12. private Date makeDate;
  13. private String payType;
  14. private Integer status;
  15. private String createdBy;
  16. private Date createdAt;
  17. private String updatedBy;
  18. private Date updatedAt;
  19. private String remark;
  20. private Date payTime;
  21. private String payRemark;
  22. private static final long serialVersionUID = 1L;
  23. public String getId() {
  24. return id;
  25. }
  26. public void setId(String id) {
  27. this.id = id == null ? null : id.trim();
  28. }
  29. public String getProId() {
  30. return proId;
  31. }
  32. public void setProId(String proId) {
  33. this.proId = proId == null ? null : proId.trim();
  34. }
  35. public String getUseReasons() {
  36. return useReasons;
  37. }
  38. public void setUseReasons(String useReasons) {
  39. this.useReasons = useReasons == null ? null : useReasons.trim();
  40. }
  41. public String getPayeeName() {
  42. return payeeName;
  43. }
  44. public void setPayeeName(String payeeName) {
  45. this.payeeName = payeeName == null ? null : payeeName.trim();
  46. }
  47. public String getBankName() {
  48. return bankName;
  49. }
  50. public void setBankName(String bankName) {
  51. this.bankName = bankName == null ? null : bankName.trim();
  52. }
  53. public String getBankAccountNum() {
  54. return bankAccountNum;
  55. }
  56. public void setBankAccountNum(String bankAccountNum) {
  57. this.bankAccountNum = bankAccountNum == null ? null : bankAccountNum.trim();
  58. }
  59. public String getMakeNum() {
  60. return makeNum;
  61. }
  62. public void setMakeNum(String makeNum) {
  63. this.makeNum = makeNum == null ? null : makeNum.trim();
  64. }
  65. public Date getMakeDate() {
  66. return makeDate;
  67. }
  68. public void setMakeDate(Date makeDate) {
  69. this.makeDate = makeDate;
  70. }
  71. public String getPayType() {
  72. return payType;
  73. }
  74. public void setPayType(String payType) {
  75. this.payType = payType == null ? null : payType.trim();
  76. }
  77. public Integer getStatus() {
  78. return status;
  79. }
  80. public void setStatus(Integer status) {
  81. this.status = status;
  82. }
  83. public String getCreatedBy() {
  84. return createdBy;
  85. }
  86. public void setCreatedBy(String createdBy) {
  87. this.createdBy = createdBy == null ? null : createdBy.trim();
  88. }
  89. public Date getCreatedAt() {
  90. return createdAt;
  91. }
  92. public void setCreatedAt(Date createdAt) {
  93. this.createdAt = createdAt;
  94. }
  95. public String getUpdatedBy() {
  96. return updatedBy;
  97. }
  98. public void setUpdatedBy(String updatedBy) {
  99. this.updatedBy = updatedBy == null ? null : updatedBy.trim();
  100. }
  101. public Date getUpdatedAt() {
  102. return updatedAt;
  103. }
  104. public void setUpdatedAt(Date updatedAt) {
  105. this.updatedAt = updatedAt;
  106. }
  107. public String getRemark() {
  108. return remark;
  109. }
  110. public void setRemark(String remark) {
  111. this.remark = remark == null ? null : remark.trim();
  112. }
  113. public Date getPayTime() {
  114. return payTime;
  115. }
  116. public void setPayTime(Date payTime) {
  117. this.payTime = payTime;
  118. }
  119. public String getPayRemark() {
  120. return payRemark;
  121. }
  122. public void setPayRemark(String payRemark) {
  123. this.payRemark = payRemark == null ? null : payRemark.trim();
  124. }
  125. }