Files
TrisolarisServer/src/main/kotlin/com/android/trisolarisserver/repo/RazorpayPaymentLinkRequestRepo.kt
androidlover5842 ebaef53f98
All checks were successful
build-and-deploy / build-deploy (push) Successful in 33s
Replace PayU integration with Razorpay
2026-02-01 09:44:57 +05:30

15 lines
508 B
Kotlin

package com.android.trisolarisserver.repo
import com.android.trisolarisserver.models.payment.RazorpayPaymentLinkRequest
import org.springframework.data.jpa.repository.JpaRepository
import java.util.UUID
interface RazorpayPaymentLinkRequestRepo : JpaRepository<RazorpayPaymentLinkRequest, UUID> {
fun findTopByBookingIdAndAmountAndCurrencyAndStatusOrderByCreatedAtDesc(
bookingId: UUID,
amount: Long,
currency: String,
status: String
): RazorpayPaymentLinkRequest?
}