|
|
@@ -175,7 +175,7 @@ public class ExperimentInsController extends BaseController { |
|
|
*/ |
|
|
*/ |
|
|
@GetMapping("/nodeResult") |
|
|
@GetMapping("/nodeResult") |
|
|
@ApiOperation("查询实例节点结果") |
|
|
@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)); |
|
|
return genericsSuccess(this.experimentInsService.getNodeResult(id,nodeId)); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|