allen 11 달 전
부모
커밋
3a77e9b3df
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      taais-modules/taais-biz/src/main/java/com/taais/biz/controller/AlgorithmTaskController.java

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