Add PayU webhook capture per property
Some checks failed
build-and-deploy / build-deploy (push) Failing after 29s

This commit is contained in:
androidlover5842
2026-01-30 05:48:09 +05:30
parent e5c2abc317
commit 4168835d47
5 changed files with 130 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
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>