车间能级提升-智能设备管理系统
朱桂飞
2025-01-09 3e8f7f239bedae0b4f04a1ac6bd443ba6298f73c
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
package org.dromara.workflow.domain.vo;
 
import lombok.Data;
import org.dromara.common.translation.annotation.Translation;
import org.dromara.common.translation.constant.TransConstant;
import org.flowable.engine.task.Attachment;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
/**
 * 流程审批记录视图
 *
 * @author may
 */
@Data
public class ActHistoryInfoVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
    /**
     * 任务id
     */
    private String id;
    /**
     * 节点id
     */
    private String taskDefinitionKey;
    /**
     * 任务名称
     */
    private String name;
    /**
     * 流程实例id
     */
    private String processInstanceId;
    /**
     * 版本
     */
    private Integer version;
    /**
     * 开始时间
     */
    private Date startTime;
    /**
     * 结束时间
     */
    private Date endTime;
    /**
     * 运行时长
     */
    private String runDuration;
    /**
     * 状态
     */
    private String status;
    /**
     * 状态
     */
    private String statusName;
    /**
     * 办理人id
     */
    private String assignee;
 
    /**
     * 办理人名称
     */
    @Translation(type = TransConstant.USER_ID_TO_NICKNAME, mapper = "assignee")
    private String nickName;
 
    /**
     * 办理人id
     */
    private String owner;
 
    /**
     * 审批信息id
     */
    private String commentId;
 
    /**
     * 审批信息
     */
    private String comment;
 
    /**
     * 审批附件
     */
    private List<Attachment> attachmentList;
}