3.14优化
This commit is contained in:
@ -225,6 +225,16 @@
|
||||
return AjaxResult.success(iWgzLeaveService.userCancelLeave(req));
|
||||
}
|
||||
|
||||
/**
|
||||
* 【我的】【请假】 请假详情
|
||||
*/
|
||||
@ApiOperation("【我的】【请假】 请假详情")
|
||||
//@PreAuthorize("@ss.hasPermi('wgzApp:user:userLeaveDetails')")
|
||||
@GetMapping("/WgzAppUserLeaveDetails/{id}")
|
||||
public AjaxResult<WgzAppUserLeaveDetailsRes> userLeaveDetails(@NotNull(message = "主键不能为空") @PathVariable("id") Long id) {
|
||||
return AjaxResult.success(iWgzLeaveService.userLeaveDetails(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 【日报】日报日历
|
||||
*/
|
||||
@ -632,7 +642,8 @@
|
||||
return AjaxResult.success(new WgzAppUserGetTheApproverRes().
|
||||
setUserId(byId.getUserId()).
|
||||
setUsername(byId.getUsername()).
|
||||
setAvatarName(byId.getAvatarName())
|
||||
setAvatarName(byId.getAvatarName()).
|
||||
setRecruitName(appById.getRecruitName())
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user