| | |
| | | * @param mdcVacationManagement |
| | | * @return |
| | | */ |
| | | @AutoLog(value = "假期管理-导出excel") |
| | | @ApiOperation(value = "假期管理-导出excel",notes = "假期管理-导出excel") |
| | | @RequestMapping("/exportXls") |
| | | public ModelAndView exportXls(HttpServletRequest request, MdcVacationManagement mdcVacationManagement) { |
| | | return super.exportXls(request, mdcVacationManagement, MdcVacationManagement.class, "假期管理导出"); |
| | | LoginUser user = (LoginUser) SecurityUtils.getSubject().getPrincipal(); |
| | | String userId = user.getId(); |
| | | return mdcVacationManagementService.exportXls(userId, mdcVacationManagement); |
| | | } |
| | | |
| | | /** |