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
| package org.ruoyi.flowable.common.enums;
|
| /**
| * 流程意见类型
| *
| * @author Xuan xuan
| * @date 2021/4/19
| */
| public enum FlowComment {
|
| /**
| * 说明
| */
| NORMAL("1", "正常"),
| REBACK("2", "退回"),
| REJECT("3", "驳回"),
| DELEGATE("4", "委派"),
| TRANSFER("5", "转办"),
| STOP("6", "终止"),
| REVOKE("7", "撤回");
|
| /**
| * 类型
| */
| 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;
| }
| }
|
|