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

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> {
}