|
|
|
@@ -42,6 +42,11 @@ public class AutoMLController extends BaseController { |
|
|
|
public GenericsAjaxResult<String> editAutoMl(@RequestBody AutoMl autoMl) throws Exception { |
|
|
|
return genericsSuccess(this.autoMLService.edit(autoMl)); |
|
|
|
} |
|
|
|
@GetMapping("/getAutoMlDetail") |
|
|
|
@ApiOperation("获取自动机器学习详细信息") |
|
|
|
public GenericsAjaxResult<AutoMl> getAutoMlDetail(@RequestParam("id") Long id){ |
|
|
|
return genericsSuccess(this.autoMLService.getAutoMlDetail(id)); |
|
|
|
} |
|
|
|
|
|
|
|
@DeleteMapping("{id}") |
|
|
|
@ApiOperation("删除自动机器学习") |
|
|
|
|