17 lines
515 B
Java
17 lines
515 B
Java
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<TabelAcuanIndeksIKI, String>{
|
|
|
|
@Query("select tabelAcuanIndeksIKI "+
|
|
"from TabelAcuanIndeksIKI tabelAcuanIndeksIKI ")
|
|
public List<TabelAcuanIndeksIKI> findAllAcuan();
|
|
|
|
}
|