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
package jnpf.flowable.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import jnpf.base.entity.SuperExtendEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
 
@EqualsAndHashCode(callSuper = true)
@Data
@TableName("workflow_event_log")
public class EventLogEntity extends SuperExtendEntity<String> {
    /**
     * 任务主键
     */
    @TableField("f_task_id")
    private String taskId;
    /**
     * 节点主建
     */
    @TableField("f_node_id")
    private String nodeId;
    /**
     * 节点名称
     */
    @TableField("f_node_name")
    private String nodeName;
    /**
     * 节点编码
     */
    @TableField("f_node_code")
    private String nodeCode;
    /**
     * 事件类型
     */
    @TableField("f_type")
    private String type;
    /**
     * 上一节点
     */
    @TableField("f_up_node")
    private String upNode;
    /**
     * 接口主建
     */
    @TableField("f_interface_id")
    private String interfaceId;
    /**
     * 执行参数
     */
    @TableField("f_data")
    private String data;
    /**
     * 执行结果
     */
    @TableField("f_result")
    private String result;
    /**
     * 执行状态 0.成功 1.失败
     */
    @TableField("f_status")
    private Integer status;
}