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