Add charge ledger for booking commissions
All checks were successful
build-and-deploy / build-deploy (push) Successful in 35s
All checks were successful
build-and-deploy / build-deploy (push) Successful in 35s
This commit is contained in:
@@ -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>
|
||||
}
|
||||
Reference in New Issue
Block a user