刘光辉
12 小时以前 34981c30a78e8bbd7791131059a9210f9928b62c
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
package jnpf.flowable.enums;
 
import lombok.Getter;
 
@Getter
public enum FieldEnum {
    /**
     * 字段
     */
    FIELD(1, "字段"),
    /**
     * 自定义
     */
    CUSTOM(2, "自定义"),
    /**
     * 节点、条件的系统参数
     */
    CONDITION(3,"系统参数"),
    /**
     * 接口的系统参数
     */
    SYSTEM(4, "系统参数"),
    /**
     * 全局变量
     */
    GLOBAL(5, "全局变量");
 
    private final Integer code;
    private final String message;
 
    FieldEnum(int code, String message) {
        this.code = code;
        this.message = message;
    }
}