trying to fix qr
All checks were successful
build-and-deploy / build-deploy (push) Successful in 35s

This commit is contained in:
androidlover5842
2026-01-30 12:56:42 +05:30
parent 669ebf96e3
commit b4c119e8ad
5 changed files with 71 additions and 8 deletions

View File

@@ -6,4 +6,10 @@ import java.util.UUID
interface PayuQrRequestRepo : JpaRepository<PayuQrRequest, UUID> {
fun findByBookingId(bookingId: UUID): List<PayuQrRequest>
fun findTopByBookingIdAndAmountAndCurrencyAndStatusOrderByCreatedAtDesc(
bookingId: UUID,
amount: Long,
currency: String,
status: com.android.trisolarisserver.models.payment.PayuQrStatus
): PayuQrRequest?
}