package sgis.map.mapper; import java.util.HashMap; import java.util.List; import java.util.Map; import egovframework.rte.psl.dataaccess.mapper.Mapper; import egovframework.rte.psl.dataaccess.util.EgovMap; @Mapper("mapMainMapper") public interface MapMainMapper { EgovMap selectMapInfoList(HashMap params) throws Exception; EgovMap selectHoleCount(Map params) throws Exception; List selectHoleList(Map params) throws Exception; List selectItems(Map params) throws Exception; List selectDistrict() throws Exception; List selectGrid1(Map params) throws Exception; List selectDistrictSgg(Map params) throws Exception; List selectOldItems(Map params) throws Exception; List get3dSido(Map params) throws Exception; List get3dGugun(Map params) throws Exception; List get3dDong(Map params) throws Exception; List get3dDetail(Map params) throws Exception; EgovMap getGeneralData(Map params) throws Exception; List getLinkLayerData(Map params) throws Exception; List getSPTData(Map params) throws Exception; List getSampleData(Map params) throws Exception; EgovMap selectInfoLastPage(Map params) throws Exception; List selectInfoItems(Map params) throws Exception; EgovMap selectWebDownloadLog(Map params) throws Exception; // dhlee 사용자별 다운로드 요청한 개수를 얻어온다. List selectProjectList(Map params) throws Exception; }