Salman Manoe 07263cefc5 Update remunerasi service
Pembuatan versioning API untuk logbook tarif oktober 2024
2024-10-01 14:39:36 +07:00

38 lines
1.4 KiB
Java

package com.jasamedika.medifirst2000.service;
import java.util.List;
import java.util.Map;
import com.jasamedika.medifirst2000.vo.IndikatorKualitasVO;
import com.jasamedika.medifirst2000.vo.KategoriPenilaianKualitasVO;
import com.jasamedika.medifirst2000.vo.ProgramKegiatanVO;
import com.jasamedika.medifirst2000.vo.UraianKegiatanVO;
public interface RemunerasiService {
Map<String, Object> saveProgramKegiatan(ProgramKegiatanVO vo);
Map<String, Object> saveUraianKegiatan(UraianKegiatanVO vo);
Map<String, Object> saveIndikatorKualitas(IndikatorKualitasVO vo);
Map<String, Object> saveKategoriPenilaianKualitas(KategoriPenilaianKualitasVO vo);
Map<String, Object> getKuantitasCapaianHariKerja(Integer idPegawai, String bulan);
Map<String, Object> splitRemunFfs(Integer idPegawai, String bulan);
Map<String, Object> logbookRemunTarifDokter(Integer idPegawai, String bulan, Map<String, Object> data);
List<Map<String, Object>> logbookFfsTarifDokter(Integer idPegawai, String bulan, Map<String, Object> data);
List<Map<String, Object>> logbookFfsLuarTarifDokter(Integer idPegawai, String bulan, Map<String, Object> data);
List<Map<String, Object>> logbookKlaimMppDokter(Integer idPegawai, String bulan);
List<Map<String, Object>> logbookFixedPayDokter(Integer idPegawai, String bulan, Map<String, Object> data);
List<Map<String, Object>> detailLogbookTarifDokter(Integer idPegawai, List<String> norecs);
}