懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
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
package cn.stylefeng.guns.workflow.modular.model.result;
 
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author stylefeng
 * @since 2019-08-22
 */
@Data
public class RuTaskResult implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
 
    private String id;
 
    private Integer rev;
 
    private String executionId;
 
    private String procInstId;
 
    private String procDefId;
 
    private String name;
 
    private String parentTaskId;
 
    private String description;
 
    private String taskDefKey;
 
    private String owner;
 
    private String assignee;
 
    private String delegation;
 
    private Integer priority;
 
    private Date createTime;
 
    private Date dueDate;
 
    private String category;
 
    private Integer suspensionState;
 
    private String tenantId;
 
    private String formKey;
 
    private Date claimTime;
 
}