package com.jasamedika.medifirst2000.service; import java.util.List; import java.util.Map; import org.springframework.orm.jpa.JpaSystemException; import com.jasamedika.medifirst2000.entities.LogbookKinerjaDetail; import com.jasamedika.medifirst2000.vo.LogbookKinerjaDetailVO; public interface LogbookKinerjaDetailService extends BaseVoService { public List> findWorkingRecord(Integer idPegawai, Integer idJabatan, Long bulan, Boolean statusVerif) throws JpaSystemException; public List> findWorkingRecord(Integer idPegawai, Integer idJabatan, Integer idIndikator, Long bulan) throws JpaSystemException; public List> findAksesPegawai(Integer idPegawai) throws JpaSystemException; public Map findWidgetStatusVerifikasi(Integer idPegawai, Long bulan) throws JpaSystemException; }