2021-01-07 11:34:56 +07:00

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();
}