Skip to content

Commit

Permalink
[Fix] : Projection 생성자 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
wellbeing-dough committed Dec 6, 2023
1 parent 9276b6b commit 919248f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 919248f

Please sign in to comment.