feat:增加 bpm 工作流的能力

This commit is contained in:
YunaiV
2022-07-27 00:54:09 +08:00
parent 03d3c8b5a8
commit 38270be962
177 changed files with 9063 additions and 4 deletions

View File

@@ -59,4 +59,15 @@ public class FlowableUtils {
BpmnXMLConverter converter = new BpmnXMLConverter();
return converter.convertToXML(model);
}
// ========== Execution 相关的工具方法 ==========
public static String formatCollectionVariable(String activityId) {
return activityId + "_assignees";
}
public static String formatCollectionElementVariable(String activityId) {
return activityId + "_assignee";
}
}