Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
workflow-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
workflow-platform
Commits
f676db99
Commit
f676db99
authored
Jun 01, 2025
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改部分pom
parent
5c55dde4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
workflow-manager/src/main/java/com/mortals/xhx/busiz/web/FlowDefinitionApiController.java
...om/mortals/xhx/busiz/web/FlowDefinitionApiController.java
+2
-1
No files found.
workflow-manager/src/main/java/com/mortals/xhx/busiz/web/FlowDefinitionApiController.java
View file @
f676db99
...
@@ -144,6 +144,7 @@ public class FlowDefinitionApiController {
...
@@ -144,6 +144,7 @@ public class FlowDefinitionApiController {
rsp
.
setMsg
(
ApiRespCodeEnum
.
SUCCESS
.
getLabel
());
rsp
.
setMsg
(
ApiRespCodeEnum
.
SUCCESS
.
getLabel
());
rsp
.
setCode
(
ApiRespCodeEnum
.
SUCCESS
.
getValue
());
rsp
.
setCode
(
ApiRespCodeEnum
.
SUCCESS
.
getValue
());
try
{
try
{
if
(
ObjectUtils
.
isEmpty
(
req
.
getDeployId
()))
throw
new
AppException
(
"deployId不能为空"
);
ApiRespPdu
<
String
>
resp
=
apiFlowDefinitionFeign
.
readImage
(
req
.
getDeployId
());
ApiRespPdu
<
String
>
resp
=
apiFlowDefinitionFeign
.
readImage
(
req
.
getDeployId
());
if
(
YesNoEnum
.
NO
.
getValue
()
==
resp
.
getCode
())
{
if
(
YesNoEnum
.
NO
.
getValue
()
==
resp
.
getCode
())
{
log
.
error
(
"获取流程图异常:"
+
resp
.
getMsg
());
log
.
error
(
"获取流程图异常:"
+
resp
.
getMsg
());
...
@@ -151,7 +152,7 @@ public class FlowDefinitionApiController {
...
@@ -151,7 +152,7 @@ public class FlowDefinitionApiController {
}
}
rsp
.
setData
(
resp
.
getData
());
rsp
.
setData
(
resp
.
getData
());
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
log
.
error
(
"获取流程图异常"
,
e
);
log
.
error
(
"获取流程图异常"
,
e
.
getMessage
()
);
rsp
.
setCode
(
ApiRespCodeEnum
.
FAILED
.
getValue
());
rsp
.
setCode
(
ApiRespCodeEnum
.
FAILED
.
getValue
());
rsp
.
setMsg
(
e
.
getMessage
());
rsp
.
setMsg
(
e
.
getMessage
());
return
rsp
;
return
rsp
;
...
...
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