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