public interface AisConsentTransactionRepository extends org.springframework.data.repository.CrudRepository<AisConsentTransaction,Long>
| Modifier and Type | Method and Description |
|---|---|
List<AisConsentTransaction> |
findByConsentIdAndResourceId(Long consentId,
String resourceId,
org.springframework.data.domain.Pageable pageable) |
@Query(value="SELECT act FROM AisConsentTransaction act WHERE act.consentId.id = :consentId AND act.resourceId = :resourceId") List<AisConsentTransaction> findByConsentIdAndResourceId(@Param(value="consentId") Long consentId, @Param(value="resourceId") String resourceId, org.springframework.data.domain.Pageable pageable)
Copyright © 2020. All rights reserved.