allen vor 11 Monaten
Ursprung
Commit
3a77e9b3df

+ 5 - 0
taais-modules/taais-biz/src/main/java/com/taais/biz/controller/AlgorithmTaskController.java

@@ -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());
+    }
 }