18 lines
454 B
Java
18 lines
454 B
Java
package com.jasamedika.medifirst2000.dao;
|
|
|
|
import com.jasamedika.medifirst2000.entities.RekapLogbookDokter;
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author salmanoe
|
|
* @version 1.0.0
|
|
* @since 07/11/2023
|
|
*/
|
|
public interface RekapLogbookDokterDao extends JpaRepository<RekapLogbookDokter, String> {
|
|
|
|
List<RekapLogbookDokter> findByBulanBetween(Date tglAwal, Date tglAkhir);
|
|
}
|