Skip to content

Commit

Permalink
Merge pull request #26 from PLADI-ALM/fix/PDS-101-bookingStatus
Browse files Browse the repository at this point in the history
[PDS-101/fix] bookingStatus 워딩 수정 및 상태 추가
  • Loading branch information
chaerlo127 authored Oct 1, 2023
2 parents 5f80f4b + 6260061 commit 34bc9f3
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
@RequiredArgsConstructor
public enum BookingStatus {

WAITING("예약대기"),
BOOKED("예약중"),
FINISHED("완료"),
CANCELED("취소");
USING("사용중"),
FINISHED("사용완료"),
CANCELED("예약취소");

private final String value;

Expand Down

0 comments on commit 34bc9f3

Please sign in to comment.