lyh
2025-04-01 4e2be858f4ccbb7490b59ed584fd1c829eb4d556
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
package org.jeecg.modules.flowable.domain.vo;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import lombok.Data;
import org.jeecg.common.aspect.annotation.Dict;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
/**
 * 工作流历史记录(通用)
 *
 */
@Data
@ApiModel("工作流--工作流历史记录(通用)")
public class FlowHistoricalVo {
    /**
     * 流程实例ID
     */
    private String procInstId;
    /**
     * 业务键
     */
    private String businessKey;
    /**
     * 流程开始时间
     */
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date startTime;
    /**
     * 流程结束时间
     */
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date endTime;
    /**
     * 节点名称
     */
    private String actName;
    /**
     * 节点类型
     */
    private String actType;
    /**
     * 节点开始时间
     */
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date actStartTime;
    /**
     * 节点结束时间
     */
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date actEndTime;
    /**
     * 任务名称
     */
    private String taskName;
    /**
     * 处理人
     */
    @Dict(dictTable = "sys_user", dicCode = "username", dicText = "realname")
    private String assignee;
    /**
     * 任务耗时
     */
    private String duration;
    /**
     * 任务描述
     */
    private String description;
    /**
     * 处理结果
     */
    private String sequenceFlowName;
}