From 960bea96b4724f2a858a75dc55e6ae24c2cad6b7 Mon Sep 17 00:00:00 2001 From: 疯狂的狮子Li <15040126243@163.com> Date: 星期五, 22 三月 2024 13:55:57 +0800 Subject: [PATCH] !501 更新AWS SDK 版本到2.25.15 Merge pull request !501 from AprilWind/dev --- ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/utils/ModelUtils.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/utils/ModelUtils.java b/ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/utils/ModelUtils.java index f5049b8..5f2551a 100644 --- a/ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/utils/ModelUtils.java +++ b/ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/utils/ModelUtils.java @@ -195,7 +195,7 @@ * * @param processDefinitionId 娴佺▼瀹氫箟id */ - public Map<String, List<ExtensionElement>> getExtensionElements(String processDefinitionId) { + public static Map<String, List<ExtensionElement>> getExtensionElements(String processDefinitionId) { Map<String, List<ExtensionElement>> map = new HashMap<>(); List<FlowElement> flowElements = getFlowElements(processDefinitionId); for (FlowElement flowElement : flowElements) { @@ -212,7 +212,7 @@ * @param processDefinitionId 娴佺▼瀹氫箟id * @param flowElementId 鑺傜偣id */ - public Map<String, List<ExtensionElement>> getExtensionElement(String processDefinitionId, String flowElementId) { + public static Map<String, List<ExtensionElement>> getExtensionElement(String processDefinitionId, String flowElementId) { BpmnModel bpmnModel = ProcessDefinitionUtil.getBpmnModel(processDefinitionId); Process process = bpmnModel.getMainProcess(); FlowElement flowElement = process.getFlowElement(flowElementId); -- Gitblit v1.9.3