Skip to content

Commit

Permalink
{Fix} 빠졌던 보증금 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
soohyuneeee committed Jul 26, 2023
1 parent f60b948 commit 924b5c2
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public class PostResponse {
private String title;
private String content;
private int price;
private int deposit;
private PostCategory category;
private PostStatus status;
private List<String> images;
Expand All @@ -30,6 +31,7 @@ public static PostResponse of(Post post) {
.title(post.getTitle())
.content(post.getContent())
.price(post.getPrice())
.deposit(post.getDeposit())
.category(post.getCategory())
.status(post.getStatus())
.images(post.getImageList().stream()
Expand Down

0 comments on commit 924b5c2

Please sign in to comment.