febs-server/febs-server-hr/src/main/java/cc/mrbird/febs/server/hr/controller/EmpBaseInfoController.java
@@ -275,4 +275,17 @@ } } @ApiOperation(value = "在职人员基本信息增加") @PostMapping("addInEmp") @PreAuthorize("hasAuthority('empBaseinfo:add')") public FebsResponse addInEmpBaseInfo(@Valid EmpBaseInfo empBaseinfo) throws FebsException { try { return new FebsResponse().data(empBaseInfoService.addInEmpBaseInfo(empBaseinfo)); } catch (Exception e) { String message = "新增员工基本信息失败"; log.error(message, e); throw new FebsException(message); } } }