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