Add charge ledger for booking commissions
All checks were successful
build-and-deploy / build-deploy (push) Successful in 35s

This commit is contained in:
androidlover5842
2026-01-29 07:38:22 +05:30
parent a1db58ec95
commit e61393fc41
5 changed files with 187 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.android.trisolarisserver.repo
import com.android.trisolarisserver.models.booking.Charge
import org.springframework.data.jpa.repository.JpaRepository
import java.util.UUID
interface ChargeRepo : JpaRepository<Charge, UUID> {
fun findByBookingIdOrderByOccurredAtDesc(bookingId: UUID): List<Charge>
}