【功能优化】 修改表单触发器增加条件设置

This commit is contained in:
jason
2025-02-16 08:47:13 +08:00
parent 129e9868fb
commit 9a4bb60a78
5 changed files with 78 additions and 54 deletions

View File

@@ -17,7 +17,7 @@ import java.util.Arrays;
public enum BpmTriggerTypeEnum implements ArrayValuable<Integer> {
HTTP_REQUEST(1, "发起 HTTP 请求"),
UPDATE_NORMAL_FORM(2, "更新流程表单"); // TODO @jasonFORM_UPDATE
FORM_UPDATE(2, "更新流程表单");
/**
* 触发器执行动作类型
@@ -39,5 +39,4 @@ public enum BpmTriggerTypeEnum implements ArrayValuable<Integer> {
public static BpmTriggerTypeEnum typeOf(Integer type) {
return ArrayUtil.firstMatch(item -> item.getType().equals(type), values());
}
}