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
package jnpf.flowable.enums;
 
import lombok.Getter;
 
 
@Getter
public enum NodeStateEnum {
    /**
     * 已提交
     */
    submit(1, "已提交"),
    /**
     * 已通过
     */
    pass(2, "已通过"),
    /**
     * 已拒绝
     */
    reject(3, "已拒绝"),
    /**
     * 审批中
     */
    approval(4, "审批中"),
    /**
     * 已退回
     */
    back(5, "已退回"),
    /**
     * 已撤回
     */
    recall(6, "已撤回"),
    /**
     * 等待中
     */
    wait(7, "等待中"),
    /**
     * 待办理
     */
    transact(8, "待办理");
 
    private final Integer code;
    private final String message;
 
    NodeStateEnum(Integer code, String message) {
        this.code = code;
        this.message = message;
    }
}