Add active room stays endpoint
All checks were successful
build-and-deploy / build-deploy (push) Successful in 27s
All checks were successful
build-and-deploy / build-deploy (push) Successful in 27s
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package com.android.trisolarisserver.controller.dto
|
||||
|
||||
import java.util.UUID
|
||||
|
||||
data class ActiveRoomStayResponse(
|
||||
val roomStayId: UUID,
|
||||
val bookingId: UUID,
|
||||
val guestId: UUID?,
|
||||
val guestName: String?,
|
||||
val guestPhone: String?,
|
||||
val roomId: UUID,
|
||||
val roomNumber: Int,
|
||||
val roomTypeId: UUID,
|
||||
val roomTypeName: String,
|
||||
val fromAt: String,
|
||||
val checkinAt: String?,
|
||||
val expectedCheckoutAt: String?
|
||||
)
|
||||
Reference in New Issue
Block a user