211
孔祥富
2021-03-10 2de6e6d6ae119da26010a0f4179d915601d823e1
febs-server/febs-server-hr/src/main/java/cc/mrbird/febs/server/hr/controller/EmpAccessoryController.java
@@ -78,7 +78,7 @@
        } catch (Exception e) {
            String message = "修改EmpAccessory失败";
            log.error(message, e);
            throw new FebsException(message);
            throw new FebsException(e.getMessage());
        }
    }
@@ -127,4 +127,16 @@
            throw new FebsException(message);
        }
    }
    @PostMapping("autoInstall")
    public void autoInstall(  String fileids) throws FebsException {
        try {
            this.empAccessoryService.autoInstall(fileids);
        } catch (Exception e) {
            String message = "插入文件失败";
            log.error(message, e);
            throw new FebsException(message);
        }
    }
}