-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: 책의 좋아요가 가장 많은 베스트 한줄요약 조회 API 구현 (#174)
* #167 - fix: 한줄요약 추천 API 중 잘못된 값 기입한 오류 수정 * #167 - refactor: 쓰지 않는 Entity인 ReadBook 클래스 삭제 * #167 - feat: 책의 좋아요가 가장 많은 베스트 한줄요약 조회 API 구현 * #167 - test: 책의 좋아요가 가장 많은 베스트 한줄요약 조회 API 테스트 구현 * #167 - comment: 게시글, 한줄요약 등록 로직에 대한 부가 설명과 베스트 한줄요약 예외 로직에 대한 부가 설명 주석 추가
- Loading branch information
Showing
8 changed files
with
91 additions
and
26 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/main/java/cotato/bookitlist/review/dto/response/ReviewSimpleResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package cotato.bookitlist.review.dto.response; | ||
|
||
public record ReviewSimpleResponse( | ||
Long reviewId, | ||
String content, | ||
String name | ||
) { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters