ApplyLxWork.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. package com.idea.oa.apply.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. public class ApplyLxWork implements Serializable {
  5. private String id;
  6. private String proId;
  7. private String ctrId;
  8. private String approvalId;
  9. private String workReceivableId;
  10. private String reason;
  11. private String comment;
  12. private String createdBy;
  13. private Date createdAt;
  14. private String updatedBy;
  15. private Date updatedAt;
  16. private Integer status;
  17. private String remark;
  18. private String fileDataIds;
  19. private String groupId;
  20. private Double presales;
  21. private String approvalForm;
  22. private String workReceivableForm;
  23. public String getApprovalForm() {
  24. return approvalForm;
  25. }
  26. public void setApprovalForm(String approvalForm) {
  27. this.approvalForm = approvalForm;
  28. }
  29. public String getWorkReceivableForm() {
  30. return workReceivableForm;
  31. }
  32. public void setWorkReceivableForm(String workReceivableForm) {
  33. this.workReceivableForm = workReceivableForm;
  34. }
  35. private static final long serialVersionUID = 1L;
  36. public String getId() {
  37. return id;
  38. }
  39. public void setId(String id) {
  40. this.id = id == null ? null : id.trim();
  41. }
  42. public String getProId() {
  43. return proId;
  44. }
  45. public void setProId(String proId) {
  46. this.proId = proId == null ? null : proId.trim();
  47. }
  48. public String getCtrId() {
  49. return ctrId;
  50. }
  51. public void setCtrId(String ctrId) {
  52. this.ctrId = ctrId == null ? null : ctrId.trim();
  53. }
  54. public String getApprovalId() {
  55. return approvalId;
  56. }
  57. public void setApprovalId(String approvalId) {
  58. this.approvalId = approvalId == null ? null : approvalId.trim();
  59. }
  60. public String getWorkReceivableId() {
  61. return workReceivableId;
  62. }
  63. public void setWorkReceivableId(String workReceivableId) {
  64. this.workReceivableId = workReceivableId == null ? null : workReceivableId.trim();
  65. }
  66. public String getReason() {
  67. return reason;
  68. }
  69. public void setReason(String reason) {
  70. this.reason = reason == null ? null : reason.trim();
  71. }
  72. public String getComment() {
  73. return comment;
  74. }
  75. public void setComment(String comment) {
  76. this.comment = comment == null ? null : comment.trim();
  77. }
  78. public String getCreatedBy() {
  79. return createdBy;
  80. }
  81. public void setCreatedBy(String createdBy) {
  82. this.createdBy = createdBy == null ? null : createdBy.trim();
  83. }
  84. public Date getCreatedAt() {
  85. return createdAt;
  86. }
  87. public void setCreatedAt(Date createdAt) {
  88. this.createdAt = createdAt;
  89. }
  90. public String getUpdatedBy() {
  91. return updatedBy;
  92. }
  93. public void setUpdatedBy(String updatedBy) {
  94. this.updatedBy = updatedBy == null ? null : updatedBy.trim();
  95. }
  96. public Date getUpdatedAt() {
  97. return updatedAt;
  98. }
  99. public void setUpdatedAt(Date updatedAt) {
  100. this.updatedAt = updatedAt;
  101. }
  102. public Integer getStatus() {
  103. return status;
  104. }
  105. public void setStatus(Integer status) {
  106. this.status = status;
  107. }
  108. public String getRemark() {
  109. return remark;
  110. }
  111. public void setRemark(String remark) {
  112. this.remark = remark == null ? null : remark.trim();
  113. }
  114. public String getFileDataIds() {
  115. return fileDataIds;
  116. }
  117. public void setFileDataIds(String fileDataIds) {
  118. this.fileDataIds = fileDataIds == null ? null : fileDataIds.trim();
  119. }
  120. public String getGroupId() {
  121. return groupId;
  122. }
  123. public void setGroupId(String groupId) {
  124. this.groupId = groupId == null ? null : groupId.trim();
  125. }
  126. public Double getPresales() {
  127. return presales;
  128. }
  129. public void setPresales(Double presales) {
  130. this.presales = presales;
  131. }
  132. }