作业模式

This commit is contained in:
2026-01-14 10:52:10 +08:00
parent 62d8a43535
commit 00a99a7222
2 changed files with 30 additions and 18 deletions

View File

@@ -68,7 +68,7 @@ public interface ISimulationNodeFeignClient {
* @param req
* @return
*/
@PostMapping("/getRunListByNodeId")
@PostMapping("/node/getRunListByNodeId")
SdmResponse<List<String>> getRunListByNodeId(@RequestBody SpdmQueryRunListReq req);
/**
@@ -77,7 +77,7 @@ public interface ISimulationNodeFeignClient {
* @param req
* @return
*/
@PostMapping("/getRunListByRunIdList")
@PostMapping("/node/getRunListByRunIdList")
SdmResponse<List<SimulationRunResp>> getRunListByRunIdList(@RequestBody SpdmQueryRunInfoListReq req);
}