Skip to content

Commit

Permalink
feat: 예약자 정보 출력시 구매수량 출력되도록 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yubin-im committed Jul 8, 2024
1 parent bdaeb05 commit b33488f
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 @@ -15,4 +15,5 @@ public class ReservationPerson {
private LocalDateTime startTime;
private String userName;
private String email;
private int applicant;
}
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ public LessonDateDetailResDto lessonDateDetail(LessonDateDetailReqDto lessonDate
.startTime(lessonDate.getStartTime())
.userName(reservation.getUserEntity().getUsername())
.email(reservation.getUserEntity().getEmail())
.applicant(reservation.getApplicant())
.build();
return person;
})
Expand Down

0 comments on commit b33488f

Please sign in to comment.