3.14优化

This commit is contained in:
2025-03-14 18:31:32 +08:00
parent c93ad97c38
commit d0afc83219
12 changed files with 310 additions and 35 deletions

View File

@ -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())
);
}