Browse Source

优化

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

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

@@ -62,7 +62,7 @@ public class ActiveLearnInsController extends BaseController {
@GetMapping("/getExpMetrics") @GetMapping("/getExpMetrics")
@ApiOperation("获取当前实验的指标对比地址") @ApiOperation("获取当前实验的指标对比地址")
@ApiResponse @ApiResponse
public GenericsAjaxResult<String> getExpMetrics(@RequestParam String experimentInsId) throws Exception {
public GenericsAjaxResult<String> getExpMetrics(@RequestParam(value = "experiment_ins_id") String experimentInsId) throws Exception {
return genericsSuccess(activeLearnInsService.getExpMetrics(experimentInsId)); return genericsSuccess(activeLearnInsService.getExpMetrics(experimentInsId));
} }
} }

Loading…
Cancel
Save