Interface BudgetTrancationRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<BudgetTransactionEntity,Long>, org.springframework.data.jpa.repository.JpaRepository<BudgetTransactionEntity,Long>, org.springframework.data.repository.ListCrudRepository<BudgetTransactionEntity,Long>, org.springframework.data.repository.ListPagingAndSortingRepository<BudgetTransactionEntity,Long>, org.springframework.data.repository.PagingAndSortingRepository<BudgetTransactionEntity,Long>, org.springframework.data.repository.query.QueryByExampleExecutor<BudgetTransactionEntity>, org.springframework.data.repository.Repository<BudgetTransactionEntity,Long>

public interface BudgetTrancationRepository extends org.springframework.data.jpa.repository.JpaRepository<BudgetTransactionEntity,Long>
The Interface BudgetRepository extends another JpaRepository which contains all default crud operations. BudgetRepository contains customized methods definitions for the operations in Budget entity.
  • Method Summary

    Modifier and Type
    Method
    Description
    Find all BudgetTransactionEntity by orderId.

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findAllByOrderId

      List<BudgetTransactionEntity> findAllByOrderId(String orderId)
      Find all BudgetTransactionEntity by orderId.
      Parameters:
      orderId - the orderId
      Returns:
      the list BudgetTransactionEntity