Skip to content

Commit

Permalink
[PDS-101] fix: bookingStatus 워딩 수정 및 상태 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sojungpp committed Sep 30, 2023
1 parent 1e8fcb0 commit 6260061
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 6260061

Please sign in to comment.