Skip to content

Commit

Permalink
[fix] 분실물 게시물 전체조회 시 content, date 뒤바뀜 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
chahyunsoo committed Aug 26, 2024
1 parent 873b1d9 commit 42f5e4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class LostPostResponse extends PostListResDto{
@Builder

private LostPostResponse(Long postId, String title, String content, String date, String category, String thumbNail, int lostId) {
super(postId, title, date, content, category);
super(postId, title, content, date, category);
this.lostId = lostId;
this.thumbNail = thumbNail;
}
Expand Down

0 comments on commit 42f5e4d

Please sign in to comment.