|
@@ -172,4 +172,9 @@ public class AlgorithmTaskController extends BaseController {
|
|
|
algorithmModel.setAlgorithmId(algorithmId);
|
|
|
return CommonResult.success(modelService.selectList(algorithmModel));
|
|
|
}
|
|
|
+
|
|
|
+ @GetMapping("/getAlgorithmOption")
|
|
|
+ public CommonResult<List> getAlgorithmOption() {
|
|
|
+ return CommonResult.success(algorithmConfigService.getOption());
|
|
|
+ }
|
|
|
}
|