package kcc.kccadr.accdnt.ai.service; import java.util.List; import egovframework.rte.psl.dataaccess.util.EgovMap; public interface AdjstIncidentService { int selectAdjstIncidentCount(AdjstIncidentVO adjstIncidentVO) throws Exception; //대시보드 수량 int selectAdjstIncidentDashCount(AdjstIncidentVO adjstIncidentVO) throws Exception; int insertAdjstIncidentReq(AdjstIncidentVO adjstIncidentVO) throws Exception; List selectAdjstIncidentList(AdjstIncidentVO adjstIncidentVO) throws Exception; //대시보드 리스트 List selectAdjstIncidentDashList(AdjstIncidentVO adjstIncidentVO) throws Exception; //대시보드 수량 EgovMap selectAdjstIncidentDashSummary(AdjstIncidentVO adjstIncidentVO) throws Exception; AdjstIncidentVO selectAdjstIncidentMaster(AdjstIncidentVO adjstIncidentVO) throws Exception; List selectAdjstIncidentrelatedPersonList(AdjstIncidentVO adjstIncidentVO) throws Exception; AdjstIncidentVO selectApmChgDateInfo(AdjstIncidentVO adjstIncidentVO) throws Exception; List selectAdjstIncidentPopList(AdjstIncidentVO adjstIncidentVO) throws Exception; int selectAdjstIncidentPopCount(AdjstIncidentVO adjstIncidentVO) throws Exception; }