Hotel Booking System ERD
ROOM
PK - id : long
- roomType : string
- roomPrice : BigDecimal
- roomPhotoUrl : string
- roomDescription : string
- bookings : List<Booking>
BOOKING
PK - id : long
USER
FK - room_id : long
PK - id : long FK - user_id : long
- email : string - checkInDate : LocalDate
- name : string - checkOutDate :
- phoneNumber : string LocalDate
- passsword : string - numOfAdults : int
- role : string - numOfChildren : int
- bookiings : - totalNumOfGuests : int
List<Booking> - bookingConfirmationCode
: string
- room : Room
- roomUser : User