Skip to content

Commit

Permalink
Merge pull request #185 from fourix4/dev
Browse files Browse the repository at this point in the history
예약 기능 수정
  • Loading branch information
llynn97 authored Jul 27, 2024
2 parents b7ba901 + 4cd16c0 commit 7674368
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,17 @@
@NoArgsConstructor
@AllArgsConstructor
public class BookingRequestDto {
@JsonProperty("cafe_id")
Long cafe_id;

@JsonProperty("seat_id")
Long seat_id;
@JsonProperty("time")
Integer time;
@JsonProperty("amount")

Integer amount;
@JsonProperty("payment_type")
String payment_type;
@JsonProperty("room_id")

Long room_id;
@JsonProperty("type")

String type;
@JsonProperty("start_time")

String start_time;

public SeatBookingDto toSeatDto() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,8 @@
@Getter
@NoArgsConstructor
@AllArgsConstructor
@Setter
public class SeatCheckOutRequestDto {

@JsonProperty("booking_id")
private Long booking_id;

}

0 comments on commit 7674368

Please sign in to comment.