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

19 lines
502 B
Java

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, String> {
SimulasiPendapatan findByTahun(Integer tahun);
}