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