18 lines
504 B
Java
18 lines
504 B
Java
package com.jasamedika.medifirst2000.dao;
|
|
|
|
import org.springframework.data.repository.PagingAndSortingRepository;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
import com.jasamedika.medifirst2000.entities.PerhitunganUangLemburPegawai;
|
|
|
|
/**
|
|
* Repository class for PerhitunganUangLemburPegawai
|
|
*
|
|
* @author Generator
|
|
*/
|
|
@Repository("PerhitunganUangLemburPegawaiDao")
|
|
public interface PerhitunganUangLemburPegawaiDao extends PagingAndSortingRepository<PerhitunganUangLemburPegawai, String> {
|
|
|
|
|
|
}
|