Add unified Razorpay payment requests list
All checks were successful
build-and-deploy / build-deploy (push) Successful in 34s

This commit is contained in:
androidlover5842
2026-02-01 14:08:45 +05:30
parent ab2330b593
commit 4e89336652
3 changed files with 87 additions and 0 deletions

View File

@@ -11,4 +11,6 @@ interface RazorpayPaymentLinkRequestRepo : JpaRepository<RazorpayPaymentLinkRequ
currency: String,
status: String
): RazorpayPaymentLinkRequest?
fun findByBookingIdOrderByCreatedAtDesc(bookingId: UUID): List<RazorpayPaymentLinkRequest>
}