Skip to content

Commit

Permalink
refactor: staff가 보는 예약 목록에 예약 pk 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jyp-on committed Nov 16, 2023
1 parent df1e1b6 commit 8d27d67
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 @@ -16,6 +16,7 @@ public class ReservationResponseByStaffDTO {
private String patientName;
private String patientId; // 환자 상세정보 보기 위한 Id
private UUID rno;
private Long rvno;
private LocalDate date;
private int index;
private String content; // 진료 희망 사유
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public static ReservationResponseByStaffDTO toAdminDTO(Reservation reservation)
.patientName(reservation.getPatient().getName())
.patientId(reservation.getPatient().getMid())
.rno(reservation.getRoom().getRno())
.rvno(reservation.getRvno())
.date(reservation.getDate())
.index(reservation.getIndex())
.summary(summary)
Expand Down

0 comments on commit 8d27d67

Please sign in to comment.