提交 | 用户 | 时间
|
8286c6
|
1 |
package cn.stylefeng.guns.workflow.modular.entity; |
懒 |
2 |
|
|
3 |
import com.baomidou.mybatisplus.annotation.IdType; |
|
4 |
import com.baomidou.mybatisplus.annotation.TableField; |
|
5 |
import com.baomidou.mybatisplus.annotation.TableId; |
|
6 |
import com.baomidou.mybatisplus.annotation.TableName; |
|
7 |
|
|
8 |
import java.io.Serializable; |
|
9 |
import java.util.Date; |
|
10 |
|
|
11 |
/** |
|
12 |
* <p> |
|
13 |
* 运行中流程 |
|
14 |
* </p> |
|
15 |
* |
|
16 |
* @author stylefeng |
|
17 |
* @since 2019-08-22 |
|
18 |
*/ |
|
19 |
@TableName("act_ru_task") |
|
20 |
public class RuTask implements Serializable { |
|
21 |
|
|
22 |
private static final long serialVersionUID = 1L; |
|
23 |
|
|
24 |
@TableId(value = "ID_", type = IdType.ID_WORKER) |
|
25 |
private String id; |
|
26 |
|
|
27 |
@TableField("REV_") |
|
28 |
private Integer rev; |
|
29 |
|
|
30 |
@TableField("EXECUTION_ID_") |
|
31 |
private String executionId; |
|
32 |
|
|
33 |
@TableField("PROC_INST_ID_") |
|
34 |
private String procInstId; |
|
35 |
|
|
36 |
@TableField("PROC_DEF_ID_") |
|
37 |
private String procDefId; |
|
38 |
|
|
39 |
@TableField("NAME_") |
|
40 |
private String name; |
|
41 |
|
|
42 |
@TableField("PARENT_TASK_ID_") |
|
43 |
private String parentTaskId; |
|
44 |
|
|
45 |
@TableField("DESCRIPTION_") |
|
46 |
private String description; |
|
47 |
|
|
48 |
@TableField("TASK_DEF_KEY_") |
|
49 |
private String taskDefKey; |
|
50 |
|
|
51 |
@TableField("OWNER_") |
|
52 |
private String owner; |
|
53 |
|
|
54 |
@TableField("ASSIGNEE_") |
|
55 |
private String assignee; |
|
56 |
|
|
57 |
@TableField("DELEGATION_") |
|
58 |
private String delegation; |
|
59 |
|
|
60 |
@TableField("PRIORITY_") |
|
61 |
private Integer priority; |
|
62 |
|
|
63 |
@TableField("CREATE_TIME_") |
|
64 |
private Date createTime; |
|
65 |
|
|
66 |
@TableField("DUE_DATE_") |
|
67 |
private Date dueDate; |
|
68 |
|
|
69 |
@TableField("CATEGORY_") |
|
70 |
private String category; |
|
71 |
|
|
72 |
@TableField("SUSPENSION_STATE_") |
|
73 |
private Integer suspensionState; |
|
74 |
|
|
75 |
@TableField("TENANT_ID_") |
|
76 |
private String tenantId; |
|
77 |
|
|
78 |
@TableField("FORM_KEY_") |
|
79 |
private String formKey; |
|
80 |
|
|
81 |
@TableField("CLAIM_TIME_") |
|
82 |
private Date claimTime; |
|
83 |
|
|
84 |
|
|
85 |
public String getId() { |
|
86 |
return id; |
|
87 |
} |
|
88 |
|
|
89 |
public void setId(String id) { |
|
90 |
this.id = id; |
|
91 |
} |
|
92 |
|
|
93 |
public Integer getRev() { |
|
94 |
return rev; |
|
95 |
} |
|
96 |
|
|
97 |
public void setRev(Integer rev) { |
|
98 |
this.rev = rev; |
|
99 |
} |
|
100 |
|
|
101 |
public String getExecutionId() { |
|
102 |
return executionId; |
|
103 |
} |
|
104 |
|
|
105 |
public void setExecutionId(String executionId) { |
|
106 |
this.executionId = executionId; |
|
107 |
} |
|
108 |
|
|
109 |
public String getProcInstId() { |
|
110 |
return procInstId; |
|
111 |
} |
|
112 |
|
|
113 |
public void setProcInstId(String procInstId) { |
|
114 |
this.procInstId = procInstId; |
|
115 |
} |
|
116 |
|
|
117 |
public String getProcDefId() { |
|
118 |
return procDefId; |
|
119 |
} |
|
120 |
|
|
121 |
public void setProcDefId(String procDefId) { |
|
122 |
this.procDefId = procDefId; |
|
123 |
} |
|
124 |
|
|
125 |
public String getName() { |
|
126 |
return name; |
|
127 |
} |
|
128 |
|
|
129 |
public void setName(String name) { |
|
130 |
this.name = name; |
|
131 |
} |
|
132 |
|
|
133 |
public String getParentTaskId() { |
|
134 |
return parentTaskId; |
|
135 |
} |
|
136 |
|
|
137 |
public void setParentTaskId(String parentTaskId) { |
|
138 |
this.parentTaskId = parentTaskId; |
|
139 |
} |
|
140 |
|
|
141 |
public String getDescription() { |
|
142 |
return description; |
|
143 |
} |
|
144 |
|
|
145 |
public void setDescription(String description) { |
|
146 |
this.description = description; |
|
147 |
} |
|
148 |
|
|
149 |
public String getTaskDefKey() { |
|
150 |
return taskDefKey; |
|
151 |
} |
|
152 |
|
|
153 |
public void setTaskDefKey(String taskDefKey) { |
|
154 |
this.taskDefKey = taskDefKey; |
|
155 |
} |
|
156 |
|
|
157 |
public String getOwner() { |
|
158 |
return owner; |
|
159 |
} |
|
160 |
|
|
161 |
public void setOwner(String owner) { |
|
162 |
this.owner = owner; |
|
163 |
} |
|
164 |
|
|
165 |
public String getAssignee() { |
|
166 |
return assignee; |
|
167 |
} |
|
168 |
|
|
169 |
public void setAssignee(String assignee) { |
|
170 |
this.assignee = assignee; |
|
171 |
} |
|
172 |
|
|
173 |
public String getDelegation() { |
|
174 |
return delegation; |
|
175 |
} |
|
176 |
|
|
177 |
public void setDelegation(String delegation) { |
|
178 |
this.delegation = delegation; |
|
179 |
} |
|
180 |
|
|
181 |
public Integer getPriority() { |
|
182 |
return priority; |
|
183 |
} |
|
184 |
|
|
185 |
public void setPriority(Integer priority) { |
|
186 |
this.priority = priority; |
|
187 |
} |
|
188 |
|
|
189 |
public Date getCreateTime() { |
|
190 |
return createTime; |
|
191 |
} |
|
192 |
|
|
193 |
public void setCreateTime(Date createTime) { |
|
194 |
this.createTime = createTime; |
|
195 |
} |
|
196 |
|
|
197 |
public Date getDueDate() { |
|
198 |
return dueDate; |
|
199 |
} |
|
200 |
|
|
201 |
public void setDueDate(Date dueDate) { |
|
202 |
this.dueDate = dueDate; |
|
203 |
} |
|
204 |
|
|
205 |
public String getCategory() { |
|
206 |
return category; |
|
207 |
} |
|
208 |
|
|
209 |
public void setCategory(String category) { |
|
210 |
this.category = category; |
|
211 |
} |
|
212 |
|
|
213 |
public Integer getSuspensionState() { |
|
214 |
return suspensionState; |
|
215 |
} |
|
216 |
|
|
217 |
public void setSuspensionState(Integer suspensionState) { |
|
218 |
this.suspensionState = suspensionState; |
|
219 |
} |
|
220 |
|
|
221 |
public String getTenantId() { |
|
222 |
return tenantId; |
|
223 |
} |
|
224 |
|
|
225 |
public void setTenantId(String tenantId) { |
|
226 |
this.tenantId = tenantId; |
|
227 |
} |
|
228 |
|
|
229 |
public String getFormKey() { |
|
230 |
return formKey; |
|
231 |
} |
|
232 |
|
|
233 |
public void setFormKey(String formKey) { |
|
234 |
this.formKey = formKey; |
|
235 |
} |
|
236 |
|
|
237 |
public Date getClaimTime() { |
|
238 |
return claimTime; |
|
239 |
} |
|
240 |
|
|
241 |
public void setClaimTime(Date claimTime) { |
|
242 |
this.claimTime = claimTime; |
|
243 |
} |
|
244 |
|
|
245 |
@Override |
|
246 |
public String toString() { |
|
247 |
return "RuTask{" + |
|
248 |
"id=" + id + |
|
249 |
", rev=" + rev + |
|
250 |
", executionId=" + executionId + |
|
251 |
", procInstId=" + procInstId + |
|
252 |
", procDefId=" + procDefId + |
|
253 |
", name=" + name + |
|
254 |
", parentTaskId=" + parentTaskId + |
|
255 |
", description=" + description + |
|
256 |
", taskDefKey=" + taskDefKey + |
|
257 |
", owner=" + owner + |
|
258 |
", assignee=" + assignee + |
|
259 |
", delegation=" + delegation + |
|
260 |
", priority=" + priority + |
|
261 |
", createTime=" + createTime + |
|
262 |
", dueDate=" + dueDate + |
|
263 |
", category=" + category + |
|
264 |
", suspensionState=" + suspensionState + |
|
265 |
", tenantId=" + tenantId + |
|
266 |
", formKey=" + formKey + |
|
267 |
", claimTime=" + claimTime + |
|
268 |
"}"; |
|
269 |
} |
|
270 |
} |