ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
package jnpf.flowable.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import jnpf.base.entity.SuperExtendEntity;
import lombok.Data;
 
/**
 * 流程引擎
 *
 * @author JNPF开发平台组
 * @version V3.4.2
 * @copyright 引迈信息技术有限公司
 * @date 2022年7月11日 上午9:18
 */
@Data
@TableName("workflow_version")
public class TemplateJsonEntity extends SuperExtendEntity<String> {
 
    /**
     * 流程模板id
     */
    @TableField("F_TEMPLATE_ID")
    private String templateId;
 
    /**
     * 流程版本
     */
    @TableField("F_VERSION")
    private String version;
 
    /**
     * 状态(0.设计,1.启用,2.历史)
     */
    @TableField("F_STATUS")
    private Integer state;
 
    /**
     * 流程模板
     */
    @TableField("F_XML")
    private String flowXml;
 
    /**
     * flowable部署ID
     */
    @TableField("f_flowable_id")
    private String flowableId;
    /**
     * activiti部署ID
     */
    @TableField("f_activiti_id")
    private String activitiId;
    /**
     * camunda部署ID
     */
    @TableField("f_camunda_id")
    private String camundaId;
    /**
     * 消息配置id
     */
    @TableField("f_send_config_ids")
    private String sendConfigIds;
 
}