Untitled

Anonymous
plain_text
08/27/2023 12:07 PM
652 B
19
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...