ApplyOffWork.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package com.idea.oa.apply.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. public class ApplyOffWork implements Serializable {
  5. @Override
  6. public String toString() {
  7. return "ApplyOffWork{" +
  8. "id='" + id + '\'' +
  9. ", applyReasons='" + applyReasons + '\'' +
  10. ", totalApplyTime='" + totalApplyTime + '\'' +
  11. ", fileDataIds='" + fileDataIds + '\'' +
  12. ", status=" + status +
  13. ", createdBy='" + createdBy + '\'' +
  14. ", createdAt=" + createdAt +
  15. ", updatedBy='" + updatedBy + '\'' +
  16. ", updatedAt=" + updatedAt +
  17. ", remark='" + remark + '\'' +
  18. '}';
  19. }
  20. private String id;
  21. private String applyReasons;
  22. private String totalApplyTime;
  23. private String fileDataIds;
  24. private Integer status;
  25. private String createdBy;
  26. private Date createdAt;
  27. private String updatedBy;
  28. private Date updatedAt;
  29. private String remark;
  30. private static final long serialVersionUID = 1L;
  31. public String getId() {
  32. return id;
  33. }
  34. public void setId(String id) {
  35. this.id = id == null ? null : id.trim();
  36. }
  37. public String getApplyReasons() {
  38. return applyReasons;
  39. }
  40. public void setApplyReasons(String applyReasons) {
  41. this.applyReasons = applyReasons == null ? null : applyReasons.trim();
  42. }
  43. public String getTotalApplyTime() {
  44. return totalApplyTime;
  45. }
  46. public void setTotalApplyTime(String totalApplyTime) {
  47. this.totalApplyTime = totalApplyTime == null ? null : totalApplyTime.trim();
  48. }
  49. public String getFileDataIds() {
  50. return fileDataIds;
  51. }
  52. public void setFileDataIds(String fileDataIds) {
  53. this.fileDataIds = fileDataIds == null ? null : fileDataIds.trim();
  54. }
  55. public Integer getStatus() {
  56. return status;
  57. }
  58. public void setStatus(Integer status) {
  59. this.status = status;
  60. }
  61. public String getCreatedBy() {
  62. return createdBy;
  63. }
  64. public void setCreatedBy(String createdBy) {
  65. this.createdBy = createdBy == null ? null : createdBy.trim();
  66. }
  67. public Date getCreatedAt() {
  68. return createdAt;
  69. }
  70. public void setCreatedAt(Date createdAt) {
  71. this.createdAt = createdAt;
  72. }
  73. public String getUpdatedBy() {
  74. return updatedBy;
  75. }
  76. public void setUpdatedBy(String updatedBy) {
  77. this.updatedBy = updatedBy == null ? null : updatedBy.trim();
  78. }
  79. public Date getUpdatedAt() {
  80. return updatedAt;
  81. }
  82. public void setUpdatedAt(Date updatedAt) {
  83. this.updatedAt = updatedAt;
  84. }
  85. public String getRemark() {
  86. return remark;
  87. }
  88. public void setRemark(String remark) {
  89. this.remark = remark == null ? null : remark.trim();
  90. }
  91. }