salmanoe 8270552d60 - penambahan tabel anggaran remunerasi
- penambahan tabel master grade remun
2021-03-28 20:28:07 +07:00

20 lines
662 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.AnggaranRemunerasi;
import com.jasamedika.medifirst2000.exception.ServiceVOException;
import com.jasamedika.medifirst2000.vo.AnggaranRemunerasiVO;
public interface AnggaranRemunerasiService extends BaseVoService<AnggaranRemunerasi, AnggaranRemunerasiVO, String> {
List<String> addAll(List<AnggaranRemunerasiVO> listVO, Integer idLoginUser)
throws JpaSystemException, ServiceVOException;
Map<String, Object> findAnggaranTahunIni() throws JpaSystemException;
}