사원중복체크 API 추가, 스웨거 토큰 정보 저장 기능 추가

This commit is contained in:
2025-12-15 11:58:34 +09:00
parent b180e0eab5
commit bad02af1c1
5 changed files with 55 additions and 1 deletions

View File

@@ -42,4 +42,14 @@ public class AdminService {
public void updateMembers(UUID uuid, MembersDto.UpdateReq updateReq) {
membersCoreService.updateMembers(uuid, updateReq);
}
/**
* 사번 중복 체크
*
* @param employeeNo
* @return
*/
public boolean existsByEmployeeNo(String employeeNo) {
return membersCoreService.existsByEmployeeNo(employeeNo);
}
}