FlowMainLog.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. package com.idea.oa.flow2.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. public class FlowMainLog implements Serializable {
  5. private String id;
  6. private String flowMainId;
  7. private String formId;
  8. private String auditUser;
  9. private String auditContent;
  10. private String auditResult;
  11. private String auditType;
  12. private String flowType;
  13. private String flowPost;
  14. private String flowId;
  15. private String taskId;
  16. private String nextPersons;
  17. private String upMainLogId;
  18. private String ccList;
  19. private String pushUserKey;
  20. private String nodeName;
  21. private Integer status;
  22. private String createdBy;
  23. private Date createdAt;
  24. private String groupId;
  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 getFlowMainId() {
  34. return flowMainId;
  35. }
  36. public void setFlowMainId(String flowMainId) {
  37. this.flowMainId = flowMainId == null ? null : flowMainId.trim();
  38. }
  39. public String getFormId() {
  40. return formId;
  41. }
  42. public void setFormId(String formId) {
  43. this.formId = formId == null ? null : formId.trim();
  44. }
  45. public String getAuditUser() {
  46. return auditUser;
  47. }
  48. public void setAuditUser(String auditUser) {
  49. this.auditUser = auditUser == null ? null : auditUser.trim();
  50. }
  51. public String getAuditContent() {
  52. return auditContent;
  53. }
  54. public void setAuditContent(String auditContent) {
  55. this.auditContent = auditContent == null ? null : auditContent.trim();
  56. }
  57. public String getAuditResult() {
  58. return auditResult;
  59. }
  60. public void setAuditResult(String auditResult) {
  61. this.auditResult = auditResult == null ? null : auditResult.trim();
  62. }
  63. public String getAuditType() {
  64. return auditType;
  65. }
  66. public void setAuditType(String auditType) {
  67. this.auditType = auditType == null ? null : auditType.trim();
  68. }
  69. public String getFlowType() {
  70. return flowType;
  71. }
  72. public void setFlowType(String flowType) {
  73. this.flowType = flowType == null ? null : flowType.trim();
  74. }
  75. public String getFlowPost() {
  76. return flowPost;
  77. }
  78. public void setFlowPost(String flowPost) {
  79. this.flowPost = flowPost == null ? null : flowPost.trim();
  80. }
  81. public String getFlowId() {
  82. return flowId;
  83. }
  84. public void setFlowId(String flowId) {
  85. this.flowId = flowId == null ? null : flowId.trim();
  86. }
  87. public String getTaskId() {
  88. return taskId;
  89. }
  90. public void setTaskId(String taskId) {
  91. this.taskId = taskId == null ? null : taskId.trim();
  92. }
  93. public String getNextPersons() {
  94. return nextPersons;
  95. }
  96. public void setNextPersons(String nextPersons) {
  97. this.nextPersons = nextPersons == null ? null : nextPersons.trim();
  98. }
  99. public String getUpMainLogId() {
  100. return upMainLogId;
  101. }
  102. public void setUpMainLogId(String upMainLogId) {
  103. this.upMainLogId = upMainLogId == null ? null : upMainLogId.trim();
  104. }
  105. public String getCcList() {
  106. return ccList;
  107. }
  108. public void setCcList(String ccList) {
  109. this.ccList = ccList == null ? null : ccList.trim();
  110. }
  111. public String getPushUserKey() {
  112. return pushUserKey;
  113. }
  114. public void setPushUserKey(String pushUserKey) {
  115. this.pushUserKey = pushUserKey == null ? null : pushUserKey.trim();
  116. }
  117. public String getNodeName() {
  118. return nodeName;
  119. }
  120. public void setNodeName(String nodeName) {
  121. this.nodeName = nodeName == null ? null : nodeName.trim();
  122. }
  123. public Integer getStatus() {
  124. return status;
  125. }
  126. public void setStatus(Integer status) {
  127. this.status = status;
  128. }
  129. public String getCreatedBy() {
  130. return createdBy;
  131. }
  132. public void setCreatedBy(String createdBy) {
  133. this.createdBy = createdBy == null ? null : createdBy.trim();
  134. }
  135. public Date getCreatedAt() {
  136. return createdAt;
  137. }
  138. public void setCreatedAt(Date createdAt) {
  139. this.createdAt = createdAt;
  140. }
  141. public String getGroupId() {
  142. return groupId;
  143. }
  144. public void setGroupId(String groupId) {
  145. this.groupId = groupId == null ? null : groupId.trim();
  146. }
  147. public String getRemark() {
  148. return remark;
  149. }
  150. public void setRemark(String remark) {
  151. this.remark = remark == null ? null : remark.trim();
  152. }
  153. }