Replace placeholder guest with existing phone guest
All checks were successful
build-and-deploy / build-deploy (push) Successful in 35s

This commit is contained in:
androidlover5842
2026-01-29 07:18:38 +05:30
parent 1033035f7d
commit 355da34659
5 changed files with 48 additions and 2 deletions

View File

@@ -7,4 +7,5 @@ import java.util.UUID
interface BookingRepo : JpaRepository<Booking, UUID> {
fun findByPropertyIdAndSourceBookingId(propertyId: UUID, sourceBookingId: String): Booking?
fun existsByPropertyIdAndSourceBookingId(propertyId: UUID, sourceBookingId: String): Boolean
fun countByPrimaryGuestId(guestId: UUID): Long
}