Untitled

mail@pastecode.io avatarunknown
plain_text
a month ago
489 B
1
Indexable
Never
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);
}