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
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;
    }
}