ApplyPaymentSettle.java 4.5 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 ApplyPaymentSettle implements Serializable {
  6. private String id;
  7. private String flowNum;
  8. private String title;
  9. private Integer isNoContract;
  10. private String payerName;
  11. private String payeeName;
  12. private String moneyPurpose;
  13. private BigDecimal contractPrice;
  14. private String payRemark;
  15. private BigDecimal havePayMoney;
  16. private BigDecimal applyPayMoney;
  17. private String applyPayMoneyUppercase;
  18. private String fileDataIds;
  19. private Integer status;
  20. private String createdByDept;
  21. private String createdBy;
  22. private Date createdAt;
  23. private String updatedBy;
  24. private Date updatedAt;
  25. private String remark;
  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 getFlowNum() {
  34. return flowNum;
  35. }
  36. public void setFlowNum(String flowNum) {
  37. this.flowNum = flowNum == null ? null : flowNum.trim();
  38. }
  39. public String getTitle() {
  40. return title;
  41. }
  42. public void setTitle(String title) {
  43. this.title = title == null ? null : title.trim();
  44. }
  45. public Integer getIsNoContract() {
  46. return isNoContract;
  47. }
  48. public void setIsNoContract(Integer isNoContract) {
  49. this.isNoContract = isNoContract;
  50. }
  51. public String getPayerName() {
  52. return payerName;
  53. }
  54. public void setPayerName(String payerName) {
  55. this.payerName = payerName == null ? null : payerName.trim();
  56. }
  57. public String getPayeeName() {
  58. return payeeName;
  59. }
  60. public void setPayeeName(String payeeName) {
  61. this.payeeName = payeeName == null ? null : payeeName.trim();
  62. }
  63. public String getMoneyPurpose() {
  64. return moneyPurpose;
  65. }
  66. public void setMoneyPurpose(String moneyPurpose) {
  67. this.moneyPurpose = moneyPurpose == null ? null : moneyPurpose.trim();
  68. }
  69. public BigDecimal getContractPrice() {
  70. return contractPrice;
  71. }
  72. public void setContractPrice(BigDecimal contractPrice) {
  73. this.contractPrice = contractPrice;
  74. }
  75. public String getPayRemark() {
  76. return payRemark;
  77. }
  78. public void setPayRemark(String payRemark) {
  79. this.payRemark = payRemark == null ? null : payRemark.trim();
  80. }
  81. public BigDecimal getHavePayMoney() {
  82. return havePayMoney;
  83. }
  84. public void setHavePayMoney(BigDecimal havePayMoney) {
  85. this.havePayMoney = havePayMoney;
  86. }
  87. public BigDecimal getApplyPayMoney() {
  88. return applyPayMoney;
  89. }
  90. public void setApplyPayMoney(BigDecimal applyPayMoney) {
  91. this.applyPayMoney = applyPayMoney;
  92. }
  93. public String getApplyPayMoneyUppercase() {
  94. return applyPayMoneyUppercase;
  95. }
  96. public void setApplyPayMoneyUppercase(String applyPayMoneyUppercase) {
  97. this.applyPayMoneyUppercase = applyPayMoneyUppercase == null ? null : applyPayMoneyUppercase.trim();
  98. }
  99. public String getFileDataIds() {
  100. return fileDataIds;
  101. }
  102. public void setFileDataIds(String fileDataIds) {
  103. this.fileDataIds = fileDataIds == null ? null : fileDataIds.trim();
  104. }
  105. public Integer getStatus() {
  106. return status;
  107. }
  108. public void setStatus(Integer status) {
  109. this.status = status;
  110. }
  111. public String getCreatedByDept() {
  112. return createdByDept;
  113. }
  114. public void setCreatedByDept(String createdByDept) {
  115. this.createdByDept = createdByDept == null ? null : createdByDept.trim();
  116. }
  117. public String getCreatedBy() {
  118. return createdBy;
  119. }
  120. public void setCreatedBy(String createdBy) {
  121. this.createdBy = createdBy == null ? null : createdBy.trim();
  122. }
  123. public Date getCreatedAt() {
  124. return createdAt;
  125. }
  126. public void setCreatedAt(Date createdAt) {
  127. this.createdAt = createdAt;
  128. }
  129. public String getUpdatedBy() {
  130. return updatedBy;
  131. }
  132. public void setUpdatedBy(String updatedBy) {
  133. this.updatedBy = updatedBy == null ? null : updatedBy.trim();
  134. }
  135. public Date getUpdatedAt() {
  136. return updatedAt;
  137. }
  138. public void setUpdatedAt(Date updatedAt) {
  139. this.updatedAt = updatedAt;
  140. }
  141. public String getRemark() {
  142. return remark;
  143. }
  144. public void setRemark(String remark) {
  145. this.remark = remark == null ? null : remark.trim();
  146. }
  147. }