yz_08
2021-05-13 28187d584b00856bb1961b7ce6ebd168ef1aded7
febs-server/febs-server-hr/src/main/java/cc/mrbird/febs/server/hr/controller/EmpPhysicalExamController.java
@@ -58,7 +58,7 @@
    @RequestMapping(value = "export",method= RequestMethod.POST)
    @ControllerEndpoint(operation = "导出用户数据", exceptionMessage = "导出Excel失败")
    public void export(QueryRequest request, EmpPhysicalExam empBaseinfo, HttpServletResponse response) {
        request.setPageSize(this.empPhysicalExamService.count());
        List<EmpPhysicalExam> records = this.empPhysicalExamService.findEmpPhysicalExams(request, empBaseinfo).getRecords();
        ExcelKit.$Export(EmpPhysicalExam.class, response).downXlsx(records, false);
    }
@@ -87,7 +87,6 @@
    }
    @DeleteMapping("{ids}")
    @PreAuthorize("hasAuthority('empPhysicalexam:delete')")
    public void logicDeleteEmpPhysicalExam(@PathVariable("ids") String ids) throws FebsException {
        try {
            this.empPhysicalExamService.logicDelEmpPhysicalExam(ids);