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 saveProgramKegiatan(ProgramKegiatanVO vo); Map saveUraianKegiatan(UraianKegiatanVO vo); Map saveIndikatorKualitas(IndikatorKualitasVO vo); Map saveKategoriPenilaianKualitas(KategoriPenilaianKualitasVO vo); Map getKuantitasCapaianHariKerja(Integer idPegawai, String bulan); Map splitRemunFfs(Integer idPegawai, String bulan); Map logbookRemunTarifDokter(Integer idPegawai, String bulan, Map data); List> logbookFfsTarifDokter(Integer idPegawai, String bulan, Map data); List> logbookFfsLuarTarifDokter(Integer idPegawai, String bulan, Map data); List> logbookKlaimMppDokter(Integer idPegawai, String bulan); List> logbookFixedPayDokter(Integer idPegawai, String bulan, Map data); List> detailLogbookTarifDokter(Integer idPegawai, List norecs); }