zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
package org.jeecg.modules.activiti.model.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 流程控制
 *
 * @author len
 * @date 2019/06/12
 */
@Data
@TableName("ACT_RE_PROCDEF")
public class ReProcdefEntity implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**
     * 流程ID,由“流程编号:流程版本号:自增长ID”组成
     */
    @TableId
    private String id;
    /**
     * 乐观锁版本号
     */
    private Integer rev;
    /**
     * 流程命名空间(该编号就是流程文件targetNamespace的属性值)
     */
    private String category;
    /**
     * 流程名称(该编号就是流程文件process元素的name属性值)
     */
    private String name;
    /**
     * 流程编号(该编号就是流程文件process元素的id属性值)
     */
    private String key;
    /**
     * 流程版本号(由程序控制,新增即为1,修改后依次加1来完成的)
     */
    private Integer version;
    /**
     * 部署编号
     */
    private String deploymentId;
    /**
     * 资源文件名称
     */
    private String resourceName;
    /**
     * 图片资源文件名称
     */
    private String dgrmResourceName;
    /**
     * 描述信息
     */
    private String description;
    /**
     * 是否从key启动 start节点是否存在formKey
     * <p>
     * 0否 1是
     */
    private Integer hasStartFormKey;
    /**
     * 是否有图片预览
     */
    private Integer hasGraphicalNotation;
    /**
     * 是否挂起
     * <p>
     * 1激活 2挂起
     */
    private Integer suspensionState;
    /**
     * 所属系统
     */
    private String tenantId;
    /**
     * 工作流引擎
     */
    private String engineVersion;
 
    /**
     * 部署时间
     */
    @TableField(exist = false)
    private Date deployTime;
}