fairnet/src/main/java/kcc/kccadr/accdnt/ai/service/AdjstIncidentService.java
2024-07-08 15:37:51 +09:00

36 lines
1.3 KiB
Java

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<AdjstIncidentVO> selectAdjstIncidentList(AdjstIncidentVO adjstIncidentVO) throws Exception;
//대시보드 리스트
List<AdjstIncidentVO> selectAdjstIncidentDashList(AdjstIncidentVO adjstIncidentVO) throws Exception;
//대시보드 수량
EgovMap selectAdjstIncidentDashSummary(AdjstIncidentVO adjstIncidentVO) throws Exception;
AdjstIncidentVO selectAdjstIncidentMaster(AdjstIncidentVO adjstIncidentVO) throws Exception;
List<AdjstIncidentVO> selectAdjstIncidentrelatedPersonList(AdjstIncidentVO adjstIncidentVO) throws Exception;
AdjstIncidentVO selectApmChgDateInfo(AdjstIncidentVO adjstIncidentVO) throws Exception;
List<AdjstIncidentVO> selectAdjstIncidentPopList(AdjstIncidentVO adjstIncidentVO) throws Exception;
int selectAdjstIncidentPopCount(AdjstIncidentVO adjstIncidentVO) throws Exception;
}