Commit 973f5c73 by huangfusuper

发布工作流的扩展配置项

parent eb0b51a6
...@@ -298,6 +298,7 @@ public class ApiFlowServiceImpl implements ApiFlowService { ...@@ -298,6 +298,7 @@ public class ApiFlowServiceImpl implements ApiFlowService {
node.setIsVirtual(NodePropertyEnum.IS_VIRTUAL.getCode()); node.setIsVirtual(NodePropertyEnum.IS_VIRTUAL.getCode());
node.setMapFlowId(innerFlow.getFlowId()); node.setMapFlowId(innerFlow.getFlowId());
} else { } else {
node.setExtendedConfiguration(((PluginNode) pluginNode).getConfig().getExtendedConfiguration());
node.setHandlerName(((PluginNode) pluginNode).getHandlerName()); node.setHandlerName(((PluginNode) pluginNode).getHandlerName());
node.setJobType(((PluginNode) pluginNode).getJobType()); node.setJobType(((PluginNode) pluginNode).getJobType());
node.setRunSource(((PluginNode) pluginNode).getRunSource()); node.setRunSource(((PluginNode) pluginNode).getRunSource());
......
...@@ -65,4 +65,6 @@ public class PluginNodeConfig { ...@@ -65,4 +65,6 @@ public class PluginNodeConfig {
*/ */
private Integer repeatCount; private Integer repeatCount;
private String extendedConfiguration;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment