FlowMain.java 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. package com.idea.oa.flow2.model;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. public class FlowMain implements Serializable {
  6. @ApiModelProperty(value = "主表id")
  7. private String id;
  8. @ApiModelProperty(value = "主题")
  9. private String applyTheme;
  10. private String formId;
  11. private String applyUser;
  12. private String deptId;
  13. private Integer flowResult;
  14. private Integer flowStatus;
  15. private String ccList;
  16. @ApiModelProperty(value = "流程名称")
  17. private String flowName;
  18. @ApiModelProperty(value = "流程类型/名称(off_work请假申请;paymen付款申请;use_money费用报支")
  19. private String flowType;
  20. private String flowPost;
  21. private String flowId;
  22. private String taskId;
  23. private Integer returnStatus;
  24. private String lastMainLogId;
  25. private String conditionMap;
  26. private Integer status;
  27. private String createdBy;
  28. @ApiModelProperty(value = "申请时间")
  29. private Date createdAt;
  30. private String updatedBy;
  31. private Date updatedAt;
  32. private String groupId;
  33. private String remark;
  34. private static final long serialVersionUID = 1L;
  35. public String getId() {
  36. return id;
  37. }
  38. public void setId(String id) {
  39. this.id = id == null ? null : id.trim();
  40. }
  41. public String getApplyTheme() {
  42. return applyTheme;
  43. }
  44. public Integer getFlowResult() {
  45. return flowResult;
  46. }
  47. public void setFlowResult(Integer flowResult) {
  48. this.flowResult = flowResult;
  49. }
  50. public void setApplyTheme(String applyTheme) {
  51. this.applyTheme = applyTheme == null ? null : applyTheme.trim();
  52. }
  53. public String getFormId() {
  54. return formId;
  55. }
  56. public void setFormId(String formId) {
  57. this.formId = formId == null ? null : formId.trim();
  58. }
  59. public String getApplyUser() {
  60. return applyUser;
  61. }
  62. public void setApplyUser(String applyUser) {
  63. this.applyUser = applyUser == null ? null : applyUser.trim();
  64. }
  65. public String getDeptId() {
  66. return deptId;
  67. }
  68. public void setDeptId(String deptId) {
  69. this.deptId = deptId == null ? null : deptId.trim();
  70. }
  71. public Integer getFlowStatus() {
  72. return flowStatus;
  73. }
  74. public void setFlowStatus(Integer flowStatus) {
  75. this.flowStatus = flowStatus;
  76. }
  77. public String getCcList() {
  78. return ccList;
  79. }
  80. public void setCcList(String ccList) {
  81. this.ccList = ccList == null ? null : ccList.trim();
  82. }
  83. public String getFlowName() {
  84. return flowName;
  85. }
  86. public void setFlowName(String flowName) {
  87. this.flowName = flowName == null ? null : flowName.trim();
  88. }
  89. public String getFlowType() {
  90. return flowType;
  91. }
  92. public void setFlowType(String flowType) {
  93. this.flowType = flowType == null ? null : flowType.trim();
  94. }
  95. public String getFlowPost() {
  96. return flowPost;
  97. }
  98. public void setFlowPost(String flowPost) {
  99. this.flowPost = flowPost == null ? null : flowPost.trim();
  100. }
  101. public String getFlowId() {
  102. return flowId;
  103. }
  104. public void setFlowId(String flowId) {
  105. this.flowId = flowId == null ? null : flowId.trim();
  106. }
  107. public String getTaskId() {
  108. return taskId;
  109. }
  110. public void setTaskId(String taskId) {
  111. this.taskId = taskId == null ? null : taskId.trim();
  112. }
  113. public Integer getReturnStatus() {
  114. return returnStatus;
  115. }
  116. public void setReturnStatus(Integer returnStatus) {
  117. this.returnStatus = returnStatus;
  118. }
  119. public String getLastMainLogId() {
  120. return lastMainLogId;
  121. }
  122. public void setLastMainLogId(String lastMainLogId) {
  123. this.lastMainLogId = lastMainLogId == null ? null : lastMainLogId.trim();
  124. }
  125. public String getConditionMap() {
  126. return conditionMap;
  127. }
  128. public void setConditionMap(String conditionMap) {
  129. this.conditionMap = conditionMap == null ? null : conditionMap.trim();
  130. }
  131. public Integer getStatus() {
  132. return status;
  133. }
  134. public void setStatus(Integer status) {
  135. this.status = status;
  136. }
  137. public String getCreatedBy() {
  138. return createdBy;
  139. }
  140. public void setCreatedBy(String createdBy) {
  141. this.createdBy = createdBy == null ? null : createdBy.trim();
  142. }
  143. public Date getCreatedAt() {
  144. return createdAt;
  145. }
  146. public void setCreatedAt(Date createdAt) {
  147. this.createdAt = createdAt;
  148. }
  149. public String getUpdatedBy() {
  150. return updatedBy;
  151. }
  152. public void setUpdatedBy(String updatedBy) {
  153. this.updatedBy = updatedBy == null ? null : updatedBy.trim();
  154. }
  155. public Date getUpdatedAt() {
  156. return updatedAt;
  157. }
  158. public void setUpdatedAt(Date updatedAt) {
  159. this.updatedAt = updatedAt;
  160. }
  161. public String getGroupId() {
  162. return groupId;
  163. }
  164. public void setGroupId(String groupId) {
  165. this.groupId = groupId == null ? null : groupId.trim();
  166. }
  167. public String getRemark() {
  168. return remark;
  169. }
  170. public void setRemark(String remark) {
  171. this.remark = remark == null ? null : remark.trim();
  172. }
  173. }