Skip to content

Commit

Permalink
Feat: 메서드 이름 변경
Browse files Browse the repository at this point in the history
- BookRepository 메서드 이름 변경
  • Loading branch information
don9m1n committed Apr 8, 2024
1 parent 1ebdc41 commit 60bcf56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public interface CustomBookRepository {

Long getBookTotalCountInMonth(long memberId, int month);

List<BookCategoryResponse> getBookCountGroupByCategory(Long memberId, int month);
List<BookCategoryResponse> getBookCountGroupByCategoryInMonth(Long memberId, int month);

List<BookCalendarResponse> getBookCalendarInMonth(Long memberId, int month);
}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public Long getBookTotalCountInMonth(long memberId, int month) {
}

@Override
public List<BookCategoryResponse> getBookCountGroupByCategory(Long memberId, int month) {
public List<BookCategoryResponse> getBookCountGroupByCategoryInMonth(Long memberId, int month) {
return queryFactory
.select(Projections.constructor(BookCategoryResponse.class, book.category, book.count()))
.from(book)
Expand Down

0 comments on commit 60bcf56

Please sign in to comment.