Skip to content

Commit

Permalink
edit BookShelf, Info save
Browse files Browse the repository at this point in the history
  • Loading branch information
tfer2442 committed Feb 3, 2023
1 parent 9499cee commit e54b592
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,4 @@ public interface BookInfoRepository extends JpaRepository<BookInfo, Long>{
@Query("UPDATE BookInfo m SET m.bookName = :bookname, m.writer = :writer where m.id = :id")
int updateByid(@Param(value="bookname")String bookname,@Param(value="writer")String writer,@Param(value="id")Long id);

BookInfo save(BookInfo bookInfo);


}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@ public interface BookShelfRepository extends JpaRepository<BookShelf,Long> {
//도서관 층 별 책장 조회
List<BookShelf> findBylibraryFloor(String libraryFloor);

BookShelf save(BookShelf bookShelf);
BookShelf findByid(Long id);
}

0 comments on commit e54b592

Please sign in to comment.