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

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