Add Razorpay QR event fetch endpoint
All checks were successful
build-and-deploy / build-deploy (push) Successful in 34s

This commit is contained in:
androidlover5842
2026-02-01 11:30:27 +05:30
parent e17eea741a
commit 08a7aaee1f
3 changed files with 42 additions and 1 deletions

View File

@@ -4,4 +4,6 @@ import com.android.trisolarisserver.models.payment.RazorpayWebhookLog
import org.springframework.data.jpa.repository.JpaRepository
import java.util.UUID
interface RazorpayWebhookLogRepo : JpaRepository<RazorpayWebhookLog, UUID>
interface RazorpayWebhookLogRepo : JpaRepository<RazorpayWebhookLog, UUID> {
fun findByPropertyIdOrderByReceivedAtDesc(propertyId: UUID): List<RazorpayWebhookLog>
}