Interface PartnerPolicyRequestRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<PartnerPolicyRequest,String>,org.springframework.data.jpa.repository.JpaRepository<PartnerPolicyRequest,String>,org.springframework.data.repository.PagingAndSortingRepository<PartnerPolicyRequest,String>,org.springframework.data.repository.query.QueryByExampleExecutor<PartnerPolicyRequest>,org.springframework.data.repository.Repository<PartnerPolicyRequest,String>
public interface PartnerPolicyRequestRepository extends org.springframework.data.jpa.repository.JpaRepository<PartnerPolicyRequest,String>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<PartnerPolicyRequest>findByPartnerId(String partId)-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findById, save
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlush
-
-
-
-
Method Detail
-
findByPartnerId
@Query(value="select * from partner_policy_request ppr where ppr.part_id=?", nativeQuery=true) List<PartnerPolicyRequest> findByPartnerId(String partId)
-
-