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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package jnpf.flowable.model.monitor;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 类的描述
 *
 * @author JNPF@YinMai Info. Co., Ltd
 * @version 5.0.x
 * @since 2024/5/15 11:00
 */
@Data
public class MonitorVo {
    /**
     * 主键
     */
    @Schema(description = "主键")
    private String id;
    /**
     * 任务编码
     */
    @Schema(description = "任务编码")
    private String enCode;
 
    /**
     * 任务标题
     */
    @Schema(description = "任务标题")
    private String fullName;
 
    /**
     * 流程名称
     */
    @Schema(description = "流程名称")
    private String flowName;
 
    /**
     * 流程编码
     */
    @Schema(description = "流程编码")
    private String flowCode;
 
    /**
     * 任务状态
     */
    @Schema(description = "任务状态")
    private Integer status;
 
    /**
     * 流程分类
     */
    @Schema(description = "流程分类")
    private String flowCategory;
 
    /**
     * 流程类型
     */
    @Schema(description = "流程类型")
    private String flowType;
 
    /**
     * 流程版本
     */
    @Schema(description = "流程版本")
    private String flowVersion;
 
    /**
     * 同步异步(0:同步,1:异步)
     */
    @Schema(description = "同步异步(0:同步,1:异步)")
    private Integer isAsync;
 
    /**
     * 父级实例节点编码
     */
    @Schema(description = "父级实例节点编码")
    private String parentCode;
 
    /**
     * 父级实例id
     */
    @Schema(description = "父级实例id")
    private String parentId;
 
    /**
     * 紧急程度
     */
    @Schema(description = "紧急程度")
    private Integer flowUrgent;
 
    /**
     * 流程主键
     */
    @Schema(description = "流程主键")
    private String templateId;
 
    /**
     * 流程版本主键
     */
    @Schema(description = "流程版本主键")
    private String flowId;
 
    /**
     * 是否批量(0:否,1:是)
     */
    @Schema(description = "是否批量(0:否,1:是)")
    private Integer isBatch;
 
    /**
     * 委托用户
     */
    @Schema(description = "委托用户")
    private String delegateUserId;
    /**
     * 开始时间
     */
    @Schema(description = "开始时间")
    private Date startTime;
    /**
     * 结束时间
     */
    @Schema(description = "结束时间")
    private Date endTime;
    /**
     * 当前节点名称
     */
    @Schema(description = "当前节点名称")
    private String currentNodeName;
    /**
     * 指派节点
     */
    @Schema(description = "指派节点")
    private String assignNode;
    /**
     * 创建人
     */
    @Schema(description = "创建人")
    private String creatorUser;
    /**
     * 创建时间
     */
    @Schema(description = "创建时间")
    private Date creatorTime;
    /**
     * 归档状态
     */
    @Schema(description = "归档状态")
    private String isFile;
    /**
     * 应用名称
     */
    @Schema(description = "应用名称")
    private String systemName;
}