|
@@ -144,6 +144,8 @@ public class GoodsController extends BaseController {
|
|
|
@ApiOperation("查询模块卷关联章卷做过列表")
|
|
|
@GetMapping("/chapter/dolist")
|
|
|
public AjaxResult<List<QuestionChapterVo>> chapterDoList(QuestionModuleChapterQueryBo bo) {
|
|
|
+ ClientLoginUser loginUser = wxTokenService.getLoginUser(ServletUtils.getRequest());
|
|
|
+ bo.setUserId(loginUser.getUser().getUserId());
|
|
|
List<QuestionChapterVo> list = iQuestionModuleChapterService.getDoList(bo);
|
|
|
return AjaxResult.success(list);
|
|
|
}
|
|
@@ -154,6 +156,8 @@ public class GoodsController extends BaseController {
|
|
|
@ApiOperation("查询章卷关联试卷做过列表")
|
|
|
@GetMapping("/exam/dolist")
|
|
|
public AjaxResult<List<ExamVo>> examDoList(QuestionChapterExamQueryBo bo) {
|
|
|
+ ClientLoginUser loginUser = wxTokenService.getLoginUser(ServletUtils.getRequest());
|
|
|
+ bo.setUserId(loginUser.getUser().getUserId());
|
|
|
List<ExamVo> list = iQuestionChapterExamService.getDoList(bo);
|
|
|
return AjaxResult.success(list);
|
|
|
}
|