Skip to content

Commit

Permalink
Fix: studendId 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yumzen committed Aug 10, 2024
1 parent 4c23229 commit 96ef60f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/kahlua/KahluaProject/service/TicketService.java
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ else if (ticket.getType() == Type.FRESHMAN) {
.status(ticket.getStatus())
.reservation_id(ticket.getReservationId())
.buyer(ticket.getBuyer())
.studentId(ticket.getStudentId())
.phone_num(ticket.getPhone_num())
.total_ticket(1)
.major(ticket.getMajor())
Expand Down Expand Up @@ -277,6 +278,7 @@ public TicketListResponse getFreshmanTicketList(User user, String sortBy) {
TicketItemResponse ticketItemResponse = TicketItemResponse.builder()
.id(ticket.getId())
.status(ticket.getStatus())
.studentId(ticket.getStudentId())
.reservation_id(ticket.getReservationId())
.buyer(ticket.getBuyer())
.phone_num(ticket.getPhone_num())
Expand Down

0 comments on commit 96ef60f

Please sign in to comment.