FlowMainPush.java 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. package com.idea.oa.flow2.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. public class FlowMainPush implements Serializable {
  5. private String id;
  6. private String flowMainId;
  7. private String formId;
  8. private String pushUser;
  9. private String pushUserKey;
  10. private String nodeName;
  11. private Integer pushType;
  12. private Integer pushRole;
  13. private String flowType;
  14. private String flowPost;
  15. private String flowId;
  16. private String taskId;
  17. private String upMainLogId;
  18. private Integer status;
  19. private String createdBy;
  20. private Date createdAt;
  21. private String updatedBy;
  22. private Date updatedAt;
  23. private String groupId;
  24. private String remark;
  25. private static final long serialVersionUID = 1L;
  26. public String getId() {
  27. return id;
  28. }
  29. public void setId(String id) {
  30. this.id = id == null ? null : id.trim();
  31. }
  32. public String getFlowMainId() {
  33. return flowMainId;
  34. }
  35. public void setFlowMainId(String flowMainId) {
  36. this.flowMainId = flowMainId == null ? null : flowMainId.trim();
  37. }
  38. public String getFormId() {
  39. return formId;
  40. }
  41. public void setFormId(String formId) {
  42. this.formId = formId == null ? null : formId.trim();
  43. }
  44. public String getPushUser() {
  45. return pushUser;
  46. }
  47. public void setPushUser(String pushUser) {
  48. this.pushUser = pushUser == null ? null : pushUser.trim();
  49. }
  50. public String getPushUserKey() {
  51. return pushUserKey;
  52. }
  53. public void setPushUserKey(String pushUserKey) {
  54. this.pushUserKey = pushUserKey == null ? null : pushUserKey.trim();
  55. }
  56. public String getNodeName() {
  57. return nodeName;
  58. }
  59. public void setNodeName(String nodeName) {
  60. this.nodeName = nodeName == null ? null : nodeName.trim();
  61. }
  62. public Integer getPushType() {
  63. return pushType;
  64. }
  65. public void setPushType(Integer pushType) {
  66. this.pushType = pushType;
  67. }
  68. public Integer getPushRole() {
  69. return pushRole;
  70. }
  71. public void setPushRole(Integer pushRole) {
  72. this.pushRole = pushRole;
  73. }
  74. public String getFlowType() {
  75. return flowType;
  76. }
  77. public void setFlowType(String flowType) {
  78. this.flowType = flowType == null ? null : flowType.trim();
  79. }
  80. public String getFlowPost() {
  81. return flowPost;
  82. }
  83. public void setFlowPost(String flowPost) {
  84. this.flowPost = flowPost == null ? null : flowPost.trim();
  85. }
  86. public String getFlowId() {
  87. return flowId;
  88. }
  89. public void setFlowId(String flowId) {
  90. this.flowId = flowId == null ? null : flowId.trim();
  91. }
  92. public String getTaskId() {
  93. return taskId;
  94. }
  95. public void setTaskId(String taskId) {
  96. this.taskId = taskId == null ? null : taskId.trim();
  97. }
  98. public String getUpMainLogId() {
  99. return upMainLogId;
  100. }
  101. public void setUpMainLogId(String upMainLogId) {
  102. this.upMainLogId = upMainLogId == null ? null : upMainLogId.trim();
  103. }
  104. public Integer getStatus() {
  105. return status;
  106. }
  107. public void setStatus(Integer status) {
  108. this.status = status;
  109. }
  110. public String getCreatedBy() {
  111. return createdBy;
  112. }
  113. public void setCreatedBy(String createdBy) {
  114. this.createdBy = createdBy == null ? null : createdBy.trim();
  115. }
  116. public Date getCreatedAt() {
  117. return createdAt;
  118. }
  119. public void setCreatedAt(Date createdAt) {
  120. this.createdAt = createdAt;
  121. }
  122. public String getUpdatedBy() {
  123. return updatedBy;
  124. }
  125. public void setUpdatedBy(String updatedBy) {
  126. this.updatedBy = updatedBy == null ? null : updatedBy.trim();
  127. }
  128. public Date getUpdatedAt() {
  129. return updatedAt;
  130. }
  131. public void setUpdatedAt(Date updatedAt) {
  132. this.updatedAt = updatedAt;
  133. }
  134. public String getGroupId() {
  135. return groupId;
  136. }
  137. public void setGroupId(String groupId) {
  138. this.groupId = groupId == null ? null : groupId.trim();
  139. }
  140. public String getRemark() {
  141. return remark;
  142. }
  143. public void setRemark(String remark) {
  144. this.remark = remark == null ? null : remark.trim();
  145. }
  146. }