Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
byit-myth-job
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liyuan
byit-myth-job
Commits
1e7791f6
Commit
1e7791f6
authored
Nov 25, 2020
by
huangfusuper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修正工作流的扩展配置承载实体
parent
1e0c2b41
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
+16
-2
ApiFlowServiceImpl.java
...c/main/java/com/byit/service/impl/ApiFlowServiceImpl.java
+1
-1
FlowExtendedConfiguration.java
...n/java/com/byit/dto/plugin/FlowExtendedConfiguration.java
+14
-0
PluginFlowConfig.java
...e/src/main/java/com/byit/dto/plugin/PluginFlowConfig.java
+1
-1
No files found.
byit-myth-admin/src/main/java/com/byit/service/impl/ApiFlowServiceImpl.java
View file @
1e7791f6
...
...
@@ -149,7 +149,7 @@ public class ApiFlowServiceImpl implements ApiFlowService {
private
Flow
saveFlow
(
PluginFlow
pluginFlow
,
Integer
workspaceId
,
boolean
isInnner
)
throws
Exception
{
Flow
flow
=
new
Flow
();
flow
.
setExtendedConfiguration
(
pluginFlow
.
getConfig
().
getExtendedConfiguration
(
));
flow
.
setExtendedConfiguration
(
JSON
.
toJSONString
(
pluginFlow
.
getConfig
().
getExtendedConfiguration
()
));
flow
.
setFlowName
(
pluginFlow
.
getName
());
flow
.
setIsInner
(
isInnner
?
"0"
:
"1"
);
flow
.
setFlowNodeCount
(
pluginFlow
.
getNodeList
().
size
());
...
...
byit-myth-core/myth-dto-core/src/main/java/com/byit/dto/plugin/FlowExtendedConfiguration.java
0 → 100644
View file @
1e7791f6
package
com
.
byit
.
dto
.
plugin
;
import
lombok.Data
;
/**
* 扩展配置
*
* @author huangfu
* @date 2020年11月25日18:18:30
*/
@Data
public
class
FlowExtendedConfiguration
{
private
String
rpcServerKey
;
}
byit-myth-core/myth-dto-core/src/main/java/com/byit/dto/plugin/PluginFlowConfig.java
View file @
1e7791f6
...
...
@@ -67,6 +67,6 @@ public class PluginFlowConfig {
/**
* 扩展配置
*/
private
String
extendedConfiguration
;
private
FlowExtendedConfiguration
extendedConfiguration
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment