获取所有题库

This commit is contained in:
Lqc 2025-08-29 15:01:33 +08:00
parent 58ea4b3071
commit 61665d749d

View File

@ -65,6 +65,12 @@ public class RepoBizController {
return Result.OK(repo.getId());
}
@GetMapping("repoList")
@Operation(summary = "获取所有题库")
public Result<List<Repo>> repoList() {
return Result.ok(repoService.list());
}
@PostMapping(value = "/courseAdd")
@Operation(summary = "课程新建题库")