사원중복체크 API 추가, 스웨거 토큰 정보 저장 기능 추가
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user