Skip to content

Commit

Permalink
테이블 수정 및 impl 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kimjiisuuu committed Jun 27, 2024
1 parent 870b3e6 commit 5a04962
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public List<UserEntity> userList(){

}

//회원 단일조회
@Override
public Optional<UserEntity> findUserById(String userId) {
return userRepository.findByUserId(userId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public interface UserService {
//회원 전체조회
List<UserEntity> userList();
// TODO
// 회원 단일조회
Optional<UserEntity> findUserById(String userId);
//회원 등록
UserEntity registerUser(UserEntity userEntity);
Expand Down

0 comments on commit 5a04962

Please sign in to comment.