15 lines
508 B
Kotlin
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?
|
|
}
|