zhanghua
2025-02-22 5067a85bba03e5320c728b0c0ca713242beb8779
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
package com.ycl.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.system.domain.base.AbsEntity;
import lombok.Data;
 
import java.util.Date;
 
/**
 *
 *
 * @author flq
 * @since 2025-01-02
 */
@Data
@TableName("t_process_coding")
public class ProcessCoding extends AbsEntity {
 
    private static final long serialVersionUID = 1L;
 
    @TableField("task_id")
    /** 节点id */
    private String taskId;
 
    @TableField("task_def_key")
    /** 节点定义key */
    private String taskDefKey;
 
    @TableField("start_task_id")
    /** 计时的起始节点id */
    private String startTaskId;
 
    @TableField("process_ins_id")
    /** 流程实例id */
    private String processInsId;
 
    @TableField("yellow_time")
    /** 变黄码的天数 */
    private String yellowTime;
 
    @TableField("red_time")
    /** 变红码的天数 */
    private String redTime;
 
    @TableField("overtime")
    /** 处理期限 */
    private String overtime;
 
    @TableField("status")
    /** 任务状态 */
    private String status;
 
    @TableField("overtime_status")
    /** 任务超时状态 */
    private String overtimeStatus;
 
    @TableField("start_task_time")
    private Date startTaskTime;
}