-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π :: QueryAdminDateReservationListResponse
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
...backend/domain/reservation/presentation/dto/response/AdminDateReservationListElement.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.example.signalbackend.domain.reservation.presentation.dto.response; | ||
|
||
import com.example.signalbackend.domain.reservation.domain.ReservationStatus; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
|
||
import java.time.LocalDate; | ||
import java.time.LocalTime; | ||
import java.util.UUID; | ||
|
||
@Getter | ||
@Builder | ||
public class AdminDateReservationListElement { | ||
private final UUID id; | ||
private final String name; | ||
private final LocalDate birth; | ||
private final LocalDate date; | ||
private final LocalTime time; | ||
private final ReservationStatus reservationStatus; | ||
} |
12 changes: 12 additions & 0 deletions
12
...d/domain/reservation/presentation/dto/response/QueryAdminDateReservationListResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.example.signalbackend.domain.reservation.presentation.dto.response; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Getter; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@AllArgsConstructor | ||
public class QueryAdminDateReservationListResponse { | ||
private final List<AdminDateReservationListElement> appointmentList; | ||
} |