Skip to content

Commit

Permalink
Merge pull request #189 from Team-MindWay/188-my-order-book-list-book…
Browse files Browse the repository at this point in the history
…url-response

🔀 :: 내가 신청한 책 목록 response에 bookURL 추가
  • Loading branch information
Umjiseung authored Jun 6, 2024
2 parents c6d7b09 + 3bdb969 commit bffd50d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ public class MyOrdersResponse {
private Long id;
private String title;
private String author;
private String book_url;
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public List<MyOrdersResponse> execute() {
.id(orders.getId())
.title(orders.getTitle())
.author(orders.getAuthor())
.book_url(orders.getBookURL())
.build())
.collect(Collectors.toList());
}
Expand Down

0 comments on commit bffd50d

Please sign in to comment.