Add Razorpay QR list endpoint
All checks were successful
build-and-deploy / build-deploy (push) Successful in 34s

This commit is contained in:
androidlover5842
2026-02-01 11:35:02 +05:30
parent 08a7aaee1f
commit 168fa7af23
3 changed files with 41 additions and 0 deletions

View File

@@ -18,4 +18,6 @@ interface RazorpayQrRequestRepo : JpaRepository<RazorpayQrRequest, UUID> {
): RazorpayQrRequest?
fun findTopByQrIdOrderByCreatedAtDesc(qrId: String): RazorpayQrRequest?
fun findByBookingIdOrderByCreatedAtDesc(bookingId: UUID): List<RazorpayQrRequest>
}