zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
package org.jeecg.common.base.vo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
@Data
public class ActDoAndApplyVo {
    private String id;
    /**
     * 流程定义key
     */
    private String procDefId;
    /**
     * 流程部署id
     */
    private String procDepId;
    /**
     * 流程实例id
     */
    private String procInstId;
    /**
     * 流程表单id
     */
    private String tableId;
    /**
     * 流程表名
     */
    private String tableName;
 
    private String title;
 
    /**
     * 数据类型(我的申请;我的已办)
     */
    private String type;
 
    private String processName;
 
    private String routeName;
 
    /**
     * 所属流程类型
     */
    private String proType;
 
    /**
     * 流程发起人
     */
    private String assignees;
 
    /**
     * 流程发起人
     */
    private String applyer;
 
    /**
     * 任务优先级
     */
    private Integer priority = 0;
 
    /**
     * 当前任务
     * */
    @TableField(exist=false)
    private String currTaskName;
 
    /**
     * 第一个节点是否为网关
     */
    private Boolean firstGateway = false;
 
    /**
     * 创建用户id
     *
     * */
    private String userId;
 
    /**
     * 提交申请时间
     *
     * */
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date applyTime;
 
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date createTime;
 
    /**
     * 历史标记
     * */
    private Boolean isHistory;
 
    /**
     * 结果状态 0未提交默认 1处理中 2通过 3驳回
     * */
    private Integer result;
 
    /**
     * 状态 0草稿默认 1处理中 2结束
     * */
    private Integer status;
 
    /**
     * 审批操作
     */
    private String deleteReason;
 
    /**
     * 审批意见
     */
    private String comment;
 
    private String procInstStatus;
 
}