- 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
20 lines
639 B
Java
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;
|
|
|
|
}
|