完成消息待办和补充安全教育接口
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user