package incheon.ags.cms.monitoring.service;

import org.egovframe.rte.psl.dataaccess.util.EgovMap;

import java.util.List;
import java.util.Map;

public interface MonitoringService {
    List<EgovMap> selectRealtimeVehicleList(String searchKeyword) throws Exception;
    List<EgovMap> selectViolationList() throws Exception;
    int updateViolationNotice(Map<String, Object> param) throws Exception;
}
