仿钉钉流程设计- 条件节点新增条件规则

This commit is contained in:
jason
2024-05-13 14:27:01 +08:00
parent f9c7795efb
commit f85ca1f88f
6 changed files with 131 additions and 3 deletions

View File

@ -13,7 +13,8 @@ import lombok.Getter;
@AllArgsConstructor
public enum BpmSimpleModeConditionType {
CUSTOM_EXPRESSION(1, "自定义条件表达式");
EXPRESSION(1, "条件表达式"),
RULE(2, "条件规则");
private final Integer type;
private final String name;