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
| package jnpf.flowable.enums;
|
| import lombok.Getter;
|
| @Getter
| public enum NodeTypeEnum {
| /**
| * 没有经过
| */
| none("-1", "没有经过"),
| /**
| * 经过
| */
| pass("0", "经过"),
| /**
| * 当前
| */
| current("1", "当前"),
| /**
| * 未经过
| */
| noPass("2", "未经过"),
| /**
| * 异常
| */
| exception("3", "异常"),
|
| ;
|
| private final String type;
| private final String message;
|
| NodeTypeEnum(String type, String message) {
| this.type = type;
| this.message = message;
| }
| }
|
|