|
|
@@ -50,6 +50,13 @@ public class ExamNoteController extends BaseController {
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation("查询考试重点推荐列表")
|
|
|
+ @GetMapping("/recommendList")
|
|
|
+ public AjaxResult<List<ExamNoteVo>> recommendList(ExamNoteQueryBo bo) {
|
|
|
+ List<ExamNoteVo> list = iExamNoteService.queryRecommendList(bo);
|
|
|
+ return AjaxResult.success(list);
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 获取考试重点详细信息
|