ApplyUseMoneyDetail.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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 ApplyUseMoneyDetail implements Serializable {
  6. private String id;
  7. private String useMoneyId;
  8. private String feeType;
  9. private BigDecimal feeMoney;
  10. private String fileDataIds;
  11. private Integer fileType;
  12. private String fileNumber;
  13. private Integer status;
  14. private String createdBy;
  15. private Date createdAt;
  16. private String updatedBy;
  17. private Date updatedAt;
  18. private String remark;
  19. private static final long serialVersionUID = 1L;
  20. public String getId() {
  21. return id;
  22. }
  23. public void setId(String id) {
  24. this.id = id == null ? null : id.trim();
  25. }
  26. public String getUseMoneyId() {
  27. return useMoneyId;
  28. }
  29. public void setUseMoneyId(String useMoneyId) {
  30. this.useMoneyId = useMoneyId == null ? null : useMoneyId.trim();
  31. }
  32. public String getFeeType() {
  33. return feeType;
  34. }
  35. public void setFeeType(String feeType) {
  36. this.feeType = feeType == null ? null : feeType.trim();
  37. }
  38. public BigDecimal getFeeMoney() {
  39. return feeMoney;
  40. }
  41. public void setFeeMoney(BigDecimal feeMoney) {
  42. this.feeMoney = feeMoney;
  43. }
  44. public String getFileDataIds() {
  45. return fileDataIds;
  46. }
  47. public void setFileDataIds(String fileDataIds) {
  48. this.fileDataIds = fileDataIds == null ? null : fileDataIds.trim();
  49. }
  50. public Integer getFileType() {
  51. return fileType;
  52. }
  53. public void setFileType(Integer fileType) {
  54. this.fileType = fileType;
  55. }
  56. public String getFileNumber() {
  57. return fileNumber;
  58. }
  59. public void setFileNumber(String fileNumber) {
  60. this.fileNumber = fileNumber == null ? null : fileNumber.trim();
  61. }
  62. public Integer getStatus() {
  63. return status;
  64. }
  65. public void setStatus(Integer status) {
  66. this.status = status;
  67. }
  68. public String getCreatedBy() {
  69. return createdBy;
  70. }
  71. public void setCreatedBy(String createdBy) {
  72. this.createdBy = createdBy == null ? null : createdBy.trim();
  73. }
  74. public Date getCreatedAt() {
  75. return createdAt;
  76. }
  77. public void setCreatedAt(Date createdAt) {
  78. this.createdAt = createdAt;
  79. }
  80. public String getUpdatedBy() {
  81. return updatedBy;
  82. }
  83. public void setUpdatedBy(String updatedBy) {
  84. this.updatedBy = updatedBy == null ? null : updatedBy.trim();
  85. }
  86. public Date getUpdatedAt() {
  87. return updatedAt;
  88. }
  89. public void setUpdatedAt(Date updatedAt) {
  90. this.updatedAt = updatedAt;
  91. }
  92. public String getRemark() {
  93. return remark;
  94. }
  95. public void setRemark(String remark) {
  96. this.remark = remark == null ? null : remark.trim();
  97. }
  98. }