package com.jasamedika.medifirst2000.dao; import java.util.List; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.PagingAndSortingRepository; import com.jasamedika.medifirst2000.entities.TabelAcuanIndeksIKI; public interface TabelAcuanIndeksIKIDao extends PagingAndSortingRepository{ @Query("select tabelAcuanIndeksIKI "+ "from TabelAcuanIndeksIKI tabelAcuanIndeksIKI ") public List findAllAcuan(); }