20 lines
425 B
Java
20 lines
425 B
Java
package com.jasamedika.medifirst2000.dao;
|
|
|
|
import org.springframework.data.repository.PagingAndSortingRepository;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import com.jasamedika.medifirst2000.entities.Kecamatan;
|
|
|
|
/**
|
|
* Repository class for Kecamatan
|
|
*
|
|
* @author Askur
|
|
*/
|
|
@Repository("KecamatanDao")
|
|
public interface KecamatanDao extends PagingAndSortingRepository<Kecamatan, Integer> {
|
|
// custom query
|
|
|
|
|
|
|
|
}
|