package incheon.ags.dss.common.service;

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

public interface DssCommonService {

	List<Map<String, Object>> selectGuList() throws Exception;

	List<Map<String, Object>> selectDongList(String sigCd) throws Exception;

	Map selectEmdDataForDetail(String emdCd) throws Exception;
	
	Map findIntersectingArea(Map<String, Object> params) throws Exception;
}