xiangpei
2024-11-26 135b3962347dfacbd0684df02ab10fb78410877f
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
package com.ycl.common.enums;
 
/**
 * 流程意见类型
 *
 * @author Tony
 * @date 2021/4/19
 */
public enum FlowComment {
 
    /**
     * 说明
     */
    NORMAL("1", "正常意见"),
    REBACK("2", "退回意见"),
    REJECT("3", "驳回意见"),
    DELEGATE("4", "委派意见"),
    ASSIGN("5", "转办意见"),
    STOP("6", "终止流程");
 
    /**
     * 类型
     */
    private final String type;
 
    /**
     * 说明
     */
    private final String remark;
 
    FlowComment(String type, String remark) {
        this.type = type;
        this.remark = remark;
    }
 
    public String getType() {
        return type;
    }
 
    public String getRemark() {
        return remark;
    }
}