salmanoe cb05042a90 - pemisahan label rupiah capaian untuk info syarat dan ketentuan P1 dan P2
- pembuatan service daftar indikator usulan baru di kontrak kinerja
- pembuatan formula indikator dengan satuan yang hitungannya harus rata-rata
- penambahan informasi tanggal batas akhir verifikasi catatan kegiatan harian
2021-04-22 21:42:23 +07:00

20 lines
639 B
Java

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<LogbookKinerjaDetail, LogbookKinerjaDetailVO, String> {
public List<Map<String, Object>> findWorkingRecord(Integer idPegawai, Integer idJabatan, Long bulan)
throws JpaSystemException;
public List<Map<String, Object>> findAksesPegawai(Integer idPegawai) throws JpaSystemException;
}