|
|
|
@@ -121,8 +121,9 @@ public class ExperimentInsController { |
|
|
|
|
|
|
|
@GetMapping(("/log/")) |
|
|
|
@ApiOperation("查询实例日志") |
|
|
|
public AjaxResult showExperimentInsLog(@RequestBody Map<String,Object> req){ |
|
|
|
return AjaxResult.success(this.experimentInsService.showExperimentInsLog(req)); |
|
|
|
public AjaxResult showExperimentInsLog(@RequestParam Integer id, |
|
|
|
@RequestParam("component_id") String componentId){ |
|
|
|
return AjaxResult.success(this.experimentInsService.showExperimentInsLog(id,componentId)); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|