Browse Source

优化

pull/225/head
chenzhihang 9 months ago
parent
commit
72682f5e88
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/controller/activeLearn/ActiveLearnInsController.java

+ 2
- 2
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/controller/activeLearn/ActiveLearnInsController.java View File

@@ -59,10 +59,10 @@ public class ActiveLearnInsController extends BaseController {
return genericsSuccess(this.activeLearnInsService.getDetailById(id));
}

@PostMapping("/getExpMetrics")
@GetMapping("/getExpMetrics")
@ApiOperation("获取当前实验的指标对比地址")
@ApiResponse
public GenericsAjaxResult<String> getExpMetrics(@RequestBody String experimentInsId) throws Exception {
public GenericsAjaxResult<String> getExpMetrics(@RequestParam String experimentInsId) throws Exception {
return genericsSuccess(activeLearnInsService.getExpMetrics(experimentInsId));
}
}

Loading…
Cancel
Save