Commit 07cf6c34 by 王志超

feat: 工单提交至新流程

parent 48642fc6
Pipeline #85857 passed with stages
in 1 minute 45 seconds
......@@ -1543,4 +1543,13 @@ public class ChangeFlowBiz {
return "";
}
}
/**
* 查询topo实际节点信息
* @param flowId 工单ID
* @return topo实际节点信息
*/
public FlowDataDTO getFlowNodeInfo(Long flowId) {
return flowService.flowDetail(flowId.toString());
}
}
......@@ -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));
}
}
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