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