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
| package org.dromara.workflow.common.enums;
|
| /**
| * 节点扩展属性枚举
| *
| * @author AprilWind
| */
| public interface NodeExtEnum {
|
| /**
| * 选项label
| *
| * @return 选项label
| */
| String getLabel();
|
| /**
| * 选项值
| *
| * @return 选项值
| */
| String getValue();
|
| /**
| * 是否默认选中
| *
| * @return 是否默认选中
| */
| boolean isSelected();
|
| }
|
|