Files
TrisolarisServer/src/main/kotlin/com/android/trisolarisserver/repo/PayuWebhookLogRepo.kt
androidlover5842 4168835d47
Some checks failed
build-and-deploy / build-deploy (push) Failing after 29s
Add PayU webhook capture per property
2026-01-30 05:48:09 +05:30

8 lines
260 B
Kotlin

package com.android.trisolarisserver.repo
import com.android.trisolarisserver.models.payment.PayuWebhookLog
import org.springframework.data.jpa.repository.JpaRepository
import java.util.UUID
interface PayuWebhookLogRepo : JpaRepository<PayuWebhookLog, UUID>