Skip to content

Commit

Permalink
Merge pull request #89 from HanaFun/feat/category
Browse files Browse the repository at this point in the history
feat: 예약자 정보 출력시 구매수량 출력되도록 추가
  • Loading branch information
yubin-im authored Jul 8, 2024
2 parents b5365c5 + b33488f commit 6f0d311
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 6f0d311

Please sign in to comment.