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