zenglf
2023-09-28 f84d9e69907cb678150eaa6393fd74cf042fcca4
lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/controller/MdcVacationManagementController.java
@@ -115,9 +115,13 @@
     * @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);
    }
    /**