From 919248faadb4140d2f473e2909a8413ec01ee0a4 Mon Sep 17 00:00:00 2001 From: wellbeing-dough Date: Wed, 6 Dec 2023 23:42:15 +0900 Subject: [PATCH] =?UTF-8?q?[Fix]=20:=20Projection=20=EC=83=9D=EC=84=B1?= =?UTF-8?q?=EC=9E=90=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../studyhubserver/studypost/dto/data/PostData.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/kr/co/studyhubinu/studyhubserver/studypost/dto/data/PostData.java b/src/main/java/kr/co/studyhubinu/studyhubserver/studypost/dto/data/PostData.java index d2840c37..7f3f5c7a 100644 --- a/src/main/java/kr/co/studyhubinu/studyhubserver/studypost/dto/data/PostData.java +++ b/src/main/java/kr/co/studyhubinu/studyhubserver/studypost/dto/data/PostData.java @@ -23,13 +23,13 @@ public class PostData { private final String penaltyWay; private final LocalDate studyStartDate; private final LocalDate studyEndDate; - private final int remainingSeat; private final String charUrl; + private final int remainingSeat; private final boolean isUsersPost; private final boolean isBookmarked; private final UserData postedUser; - public PostData(Long postId, String title, LocalDateTime createdDate, String content, MajorType major, int studyPerson, GenderType filteredGender, StudyWayType studyWay, int penalty, String penaltyWay, LocalDate studyStartDate, LocalDate studyEndDate, int remainingSeat, String charUrl, boolean isUsersPost, boolean isBookmarked, UserData postedUser) { + public PostData(Long postId, String title, LocalDateTime createdDate, String content, MajorType major, int studyPerson, GenderType filteredGender, StudyWayType studyWay, int penalty, String penaltyWay, LocalDate studyStartDate, LocalDate studyEndDate, String charUrl, int remainingSeat, boolean isUsersPost, boolean isBookmarked, UserData postedUser) { this.postId = postId; this.title = title; this.createdDate = createdDate; @@ -42,8 +42,8 @@ public PostData(Long postId, String title, LocalDateTime createdDate, String con this.penaltyWay = penaltyWay; this.studyStartDate = studyStartDate; this.studyEndDate = studyEndDate; - this.remainingSeat = remainingSeat; this.charUrl = charUrl; + this.remainingSeat = remainingSeat; this.isUsersPost = isUsersPost; this.isBookmarked = isBookmarked; this.postedUser = postedUser;