Interface FundPlanRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<FundPlan,Integer>, JpaRepository<FundPlan,Integer>, org.springframework.data.repository.ListCrudRepository<FundPlan,Integer>, org.springframework.data.repository.ListPagingAndSortingRepository<FundPlan,Integer>, org.springframework.data.repository.PagingAndSortingRepository<FundPlan,Integer>, org.springframework.data.repository.query.QueryByExampleExecutor<FundPlan>, org.springframework.data.repository.Repository<FundPlan,Integer>

public interface FundPlanRepository extends JpaRepository<FundPlan,Integer>
Author:
TingXD (chen19990627)
  • Method Summary

    Modifier and Type
    Method
    Description
     

    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.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

    • findByProjectID

      @Query("from FundPlan plan where plan.fundProj.projectID =:id") List<FundPlan> findByProjectID(Integer id)