15 lines
424 B
Java
15 lines
424 B
Java
package com.jasamedika.medifirst2000.dao;
|
|
|
|
import org.springframework.data.repository.PagingAndSortingRepository;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import com.jasamedika.medifirst2000.entities.KesadaranCheckOutDetail;
|
|
|
|
/**
|
|
* @author Shakato
|
|
*/
|
|
@Repository("KesadaranCheckOutDetailDao")
|
|
public interface KesadaranCheckOutDetailDao extends PagingAndSortingRepository<KesadaranCheckOutDetail, Integer> {
|
|
|
|
}
|