zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
package com.changhong.epc.bean.tenant.log;
 
import com.changhong.epc.constter.base.BaseBean;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.persistence.Column;
import javax.persistence.Table;
import java.io.Serializable;
 
/**
 * 流程记录表
 * @ClassName: ProcessLog
 * @author [九鼎联合科技]
 * @date 2017年07月20日 上午10:33:18
 */
@Table(name="test")
@Data
@EqualsAndHashCode(callSuper=true)
public class ProcessLog extends BaseBean implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    
    /**
     * 流程定义id
     * 表字段:process_def_id
     */
    @Column(name="process_def_id")
    private Long processDefId;
    
    /**
     * 流程实例id
     * 表字段:process_inst_id
     */
    @Column(name="process_inst_id")
    private Long processInstId;
    
    /**
     * 活动实例id
     * 表字段:activity_inst_id
     */
    @Column(name="activity_inst_id")
    private Long activityInstId;
    
    /**
     * 活动定义id
     * 表字段:activity_def_id
     */
    @Column(name="activity_def_id")
    private String activityDefId;
    
    /**
     * 工作项id
     * 表字段:work_item_id
     */
    @Column(name="work_item_id")
    private Long workItemId;
    
    /**
     * 活动定义名称
     * 表字段:activity_def_name
     */
    @Column(name="activity_def_name")
    private String activityDefName;
    
    /**
     * 执行人id
     * 表字段:participant_id
     */
    @Column(name="participant_id")
    private String participantId;
    
    /**
     * 执行人名称
     * 表字段:participant_name
     */
    @Column(name="participant_name")
    private String participantName;
    
    /**
     * 超时时间
     * 表字段:limit_num
     */
    @Column(name="limit_num")
    private Integer limitNum;
    
    /**
     * 审批语
     * 表字段:data
     */
    @Column(name="data")
    private String data;
    
    /**
     * 记录级别
     * 表字段:level
     */
    @Column(name="level")
    private Integer level;
    
    
    /**
     * 是否超时 1.超时  0 未超时
     */
    @Column(name="time_out")
    private Integer timeOut;
}