Skip to content

Commit

Permalink
[feat] #107 오픈톡 메인 API response 에 isbn 값 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeesw committed Aug 24, 2024
1 parent 9374cec commit 9e60ba1
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,6 +9,7 @@
@Setter
public class OpentalkDto {
private Long id;
private String isbn13;
private String bookName;
private String bookImageURL;
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public class OpentalkResponseParser {
public void setSimpleBookInfo(OpentalkDto opentalkDto, DetailResponseDto responseDto){
log.trace("OpentalkResponseParser > setSimpleBookInfo()");

opentalkDto.setIsbn13(responseDto.getBookInfoDto().getIsbn13());
opentalkDto.setBookName(responseDto.getBookInfoDto().getBookname());
opentalkDto.setBookImageURL(responseDto.getBookInfoDto().getBookImageURL());
}
Expand Down

0 comments on commit 9e60ba1

Please sign in to comment.