Add Razorpay active QR fetch and close
All checks were successful
build-and-deploy / build-deploy (push) Successful in 34s

This commit is contained in:
androidlover5842
2026-02-01 10:52:46 +05:30
parent 132c3b19c0
commit d53d179963
2 changed files with 60 additions and 0 deletions

View File

@@ -11,4 +11,9 @@ interface RazorpayQrRequestRepo : JpaRepository<RazorpayQrRequest, UUID> {
currency: String,
status: String
): RazorpayQrRequest?
fun findTopByBookingIdAndStatusOrderByCreatedAtDesc(
bookingId: UUID,
status: String
): RazorpayQrRequest?
}