BPM:新增 flowable expression 表达式,替代现有 BpmTaskAssignScript,更加灵活

This commit is contained in:
YunaiV
2024-03-14 12:54:16 +08:00
parent cdbcd4d673
commit 797fddfb3d
12 changed files with 59 additions and 90 deletions

View File

@ -18,7 +18,9 @@ public enum BpmTaskAssignRuleTypeEnum {
POST(22, "岗位"),
USER(30, "用户"),
USER_GROUP(40, "用户组"),
@Deprecated
SCRIPT(50, "自定义脚本"), // 例如说,发起人所在部门的领导、发起人所在部门的领导的领导
EXPRESS(60, "流程表达式"), // 表达式 ExpressionManager
;
/**