ApplyAddWork.java 2.6 KB

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