사원중복체크 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

@@ -178,4 +178,14 @@ public class MembersCoreService {
memberEntity.setLoginFailCount(0);
membersRepository.save(memberEntity);
}
/**
* 사번 중복체크
*
* @param employeeNo
* @return
*/
public boolean existsByEmployeeNo(String employeeNo) {
return membersRepository.existsByEmployeeNo(employeeNo);
}
}