Skip to content

Commit

Permalink
add :: book_url 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Umjiseung committed Jun 6, 2024
1 parent c6d7b09 commit 3bdb969
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 3bdb969

Please sign in to comment.