Browse Source

配置

pull/10/head
fanshuai 1 year ago
parent
commit
3b5dbe38e5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/controller/experiment/ExperimentInsController.java

+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/controller/experiment/ExperimentInsController.java View File

@@ -175,7 +175,7 @@ public class ExperimentInsController extends BaseController {
*/
@GetMapping("/nodeResult")
@ApiOperation("查询实例节点结果")
public GenericsAjaxResult<List> getNodeResult(@RequestParam("id") Integer id, @RequestParam("node_id") String nodeId) throws Exception {
public GenericsAjaxResult<List> getNodeResult(@PathVariable("id") Integer id, @PathVariable("node_id") String nodeId) throws Exception {
return genericsSuccess(this.experimentInsService.getNodeResult(id,nodeId));
}



Loading…
Cancel
Save