package com.jasamedika.medifirst2000.dao; import org.springframework.data.repository.PagingAndSortingRepository; import org.springframework.stereotype.Repository; import com.jasamedika.medifirst2000.entities.SimulasiPendapatan; /** * Repository class for SimulasiPendapatan * * @author Generator */ @Repository("SimulasiPendapatanDao") public interface SimulasiPendapatanDao extends PagingAndSortingRepository { SimulasiPendapatan findByTahun(Integer tahun); }