完成消息待办和补充安全教育接口

This commit is contained in:
2025-03-21 14:02:44 +08:00
parent fb1cdf731c
commit ab7e0a15ab
14 changed files with 126 additions and 35 deletions

View File

@ -198,6 +198,17 @@
return AjaxResult.success(iWgzQuestionSaveService.userSubmitATestPaper(req));
}
/**
* 【我的】【岗前培训】分数查询
*/
@ApiOperation("【我的】【岗前培训】分数查询")
//@PreAuthorize("@ss.hasPermi('wgzApp:user:userScoreQuery')")
@PostMapping("/WgzUserScoreQuery")
public AjaxResult<WgzAppUserScoreQuery> userScoreQuery() {
Long appUserId = SecurityUtils.getAppUserId();
return AjaxResult.success(iWgzQuestionSaveService.userScoreQuery(appUserId));
}
/**
* 【我的】【请假】 历史请假列表
*/
@ -713,8 +724,9 @@
//@PreAuthorize("@ss.hasPermi('wgzApp:user:userAllRecruitment')")
@GetMapping("/WgzAppUserAllRecruitment")
public AjaxResult<WgzAppUserAllRecruitmentRes> userAllRecruitment() {
Long appUserId = SecurityUtils.getAppUserId();
WgzAppUserAllRecruitmentRes res = new WgzAppUserAllRecruitmentRes();
res.setList(iBgtProjectRecruitApplyService.userAllRecruitment());
res.setList(iBgtProjectRecruitApplyService.userAllRecruitment(appUserId));
return AjaxResult.success(res);
}