Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yanxuan-qc-change-system
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
yx-qc-change-flow
yanxuan-qc-change-system
Commits
07cf6c34
Commit
07cf6c34
authored
Nov 20, 2025
by
王志超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 工单提交至新流程
parent
48642fc6
Pipeline
#85857
passed with stages
in 1 minute 45 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
ChangeFlowBiz.java
...om/netease/mail/yanxuan/change/biz/biz/ChangeFlowBiz.java
+9
-0
ChangeFlowController.java
...l/yanxuan/change/web/controller/ChangeFlowController.java
+12
-0
No files found.
yanxuan-qc-change-system-biz/src/main/java/com/netease/mail/yanxuan/change/biz/biz/ChangeFlowBiz.java
View file @
07cf6c34
...
...
@@ -1543,4 +1543,13 @@ public class ChangeFlowBiz {
return
""
;
}
}
/**
* 查询topo实际节点信息
* @param flowId 工单ID
* @return topo实际节点信息
*/
public
FlowDataDTO
getFlowNodeInfo
(
Long
flowId
)
{
return
flowService
.
flowDetail
(
flowId
.
toString
());
}
}
yanxuan-qc-change-system-web/src/main/java/com/netease/mail/yanxuan/change/web/controller/ChangeFlowController.java
View file @
07cf6c34
...
...
@@ -38,6 +38,7 @@ import com.netease.mail.yanxuan.change.dal.meta.model.rpc.CommanderResponse;
import
com.netease.mail.yanxuan.change.dal.meta.model.vo.BasicChangeFlowVO
;
import
com.netease.mail.yanxuan.change.dal.meta.model.vo.ChangeFlowListVO
;
import
com.netease.mail.yanxuan.change.dal.meta.model.vo.ChangeFlowVO
;
import
com.netease.yanxuan.flowx.sdk.meta.dto.base.FlowDataDTO
;
import
com.netease.yanxuan.flowx.sdk.meta.dto.exec.InterfaceInputDTO
;
import
com.netease.yanxuan.flowx.sdk.meta.dto.exec.UserBaseContainerDTO
;
...
...
@@ -277,4 +278,15 @@ public class ChangeFlowController {
public
AjaxResult
<
List
<
CommanderResponse
>>
queryCommanderInfoV2
(
@RequestBody
QueryCommanderEmailReq
req
)
{
return
AjaxResult
.
success
(
interiorChangeConfigService
.
queryCommanderEmail
(
req
));
}
/**
* 查询topo实际节点信息
*
* @param flowId 工单ID
* @return topo实际节点信息
*/
@GetMapping
(
"/flowNodeInfo"
)
public
AjaxResult
<
FlowDataDTO
>
getFlowNodeInfo
(
@RequestParam
Long
flowId
)
{
return
AjaxResult
.
success
(
changeFlowBiz
.
getFlowNodeInfo
(
flowId
));
}
}
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