Lius
2024-11-22 a6954d841cf6aeed8c3ed7e7d409d25bedc318e6
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);
    }
    /**