Untitled
unknown
plain_text
2 years ago
489 B
5
Indexable
package com.CallRecording.ReportingService.repository; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface CDRRepository extends JpaRepository<CDR, Long>, JpaSpecificationExecutor<CDR> { List<CDR> findAllByCallId(Long callId, Pageable pageable); }
Editor is loading...