ApplyPayment.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. package com.idea.oa.apply.model;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. public class ApplyPayment implements Serializable {
  6. private String id;
  7. private String orderId;
  8. private BigDecimal totalReturnMoney;
  9. private BigDecimal totalPayMoney;
  10. private String payName;
  11. private BigDecimal payMoney;
  12. private String costsType;
  13. private Integer billType;
  14. private BigDecimal billMoney;
  15. private String billNumber;
  16. private String billRate;
  17. private String fileDataIds;
  18. private Integer status;
  19. private String createdBy;
  20. private Date createdAt;
  21. private String updatedBy;
  22. private Date updatedAt;
  23. private String remark;
  24. private Date payTime;
  25. private String payRemark;
  26. private static final long serialVersionUID = 1L;
  27. public String getId() {
  28. return id;
  29. }
  30. public void setId(String id) {
  31. this.id = id == null ? null : id.trim();
  32. }
  33. public String getOrderId() {
  34. return orderId;
  35. }
  36. public void setOrderId(String orderId) {
  37. this.orderId = orderId == null ? null : orderId.trim();
  38. }
  39. public BigDecimal getTotalReturnMoney() {
  40. return totalReturnMoney;
  41. }
  42. public void setTotalReturnMoney(BigDecimal totalReturnMoney) {
  43. this.totalReturnMoney = totalReturnMoney;
  44. }
  45. public BigDecimal getTotalPayMoney() {
  46. return totalPayMoney;
  47. }
  48. public void setTotalPayMoney(BigDecimal totalPayMoney) {
  49. this.totalPayMoney = totalPayMoney;
  50. }
  51. public String getPayName() {
  52. return payName;
  53. }
  54. public void setPayName(String payName) {
  55. this.payName = payName == null ? null : payName.trim();
  56. }
  57. public BigDecimal getPayMoney() {
  58. return payMoney;
  59. }
  60. public void setPayMoney(BigDecimal payMoney) {
  61. this.payMoney = payMoney;
  62. }
  63. public String getCostsType() {
  64. return costsType;
  65. }
  66. public void setCostsType(String costsType) {
  67. this.costsType = costsType == null ? null : costsType.trim();
  68. }
  69. public Integer getBillType() {
  70. return billType;
  71. }
  72. public void setBillType(Integer billType) {
  73. this.billType = billType;
  74. }
  75. public BigDecimal getBillMoney() {
  76. return billMoney;
  77. }
  78. public void setBillMoney(BigDecimal billMoney) {
  79. this.billMoney = billMoney;
  80. }
  81. public String getBillNumber() {
  82. return billNumber;
  83. }
  84. public void setBillNumber(String billNumber) {
  85. this.billNumber = billNumber == null ? null : billNumber.trim();
  86. }
  87. public String getBillRate() {
  88. return billRate;
  89. }
  90. public void setBillRate(String billRate) {
  91. this.billRate = billRate == null ? null : billRate.trim();
  92. }
  93. public String getFileDataIds() {
  94. return fileDataIds;
  95. }
  96. public void setFileDataIds(String fileDataIds) {
  97. this.fileDataIds = fileDataIds == null ? null : fileDataIds.trim();
  98. }
  99. public Integer getStatus() {
  100. return status;
  101. }
  102. public void setStatus(Integer status) {
  103. this.status = status;
  104. }
  105. public String getCreatedBy() {
  106. return createdBy;
  107. }
  108. public void setCreatedBy(String createdBy) {
  109. this.createdBy = createdBy == null ? null : createdBy.trim();
  110. }
  111. public Date getCreatedAt() {
  112. return createdAt;
  113. }
  114. public void setCreatedAt(Date createdAt) {
  115. this.createdAt = createdAt;
  116. }
  117. public String getUpdatedBy() {
  118. return updatedBy;
  119. }
  120. public void setUpdatedBy(String updatedBy) {
  121. this.updatedBy = updatedBy == null ? null : updatedBy.trim();
  122. }
  123. public Date getUpdatedAt() {
  124. return updatedAt;
  125. }
  126. public void setUpdatedAt(Date updatedAt) {
  127. this.updatedAt = updatedAt;
  128. }
  129. public String getRemark() {
  130. return remark;
  131. }
  132. public void setRemark(String remark) {
  133. this.remark = remark == null ? null : remark.trim();
  134. }
  135. public Date getPayTime() {
  136. return payTime;
  137. }
  138. public void setPayTime(Date payTime) {
  139. this.payTime = payTime;
  140. }
  141. public String getPayRemark() {
  142. return payRemark;
  143. }
  144. public void setPayRemark(String payRemark) {
  145. this.payRemark = payRemark == null ? null : payRemark.trim();
  146. }
  147. }