smartGeoinfoOriginal/src/main/java/sgis/map/mapper/MapMainMapper.java

53 lines
1.8 KiB
Java

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<String, Object> params) throws Exception;
EgovMap selectHoleCount(Map<String, Object> params) throws Exception;
List<EgovMap> selectHoleList(Map<String, Object> params) throws Exception;
List<EgovMap> selectItems(Map<String, Object> params) throws Exception;
List<EgovMap> selectDistrict() throws Exception;
List<EgovMap> selectGrid1(Map<String, Object> params) throws Exception;
List<EgovMap> selectDistrictSgg(Map<String, Object> params) throws Exception;
List<EgovMap> selectOldItems(Map<String, Object> params) throws Exception;
List<EgovMap> get3dSido(Map<String, Object> params) throws Exception;
List<EgovMap> get3dGugun(Map<String, Object> params) throws Exception;
List<EgovMap> get3dDong(Map<String, Object> params) throws Exception;
List<EgovMap> get3dDetail(Map<String, Object> params) throws Exception;
EgovMap getGeneralData(Map<String, Object> params) throws Exception;
List<EgovMap> getLinkLayerData(Map<String, Object> params) throws Exception;
List<EgovMap> getSPTData(Map<String, Object> params) throws Exception;
List<EgovMap> getSampleData(Map<String, Object> params) throws Exception;
EgovMap selectInfoLastPage(Map<String, Object> params) throws Exception;
List<EgovMap> selectInfoItems(Map<String, Object> params) throws Exception;
EgovMap selectWebDownloadLog(Map<String, Object> params) throws Exception; // dhlee 사용자별 다운로드 요청한 개수를 얻어온다.
List<EgovMap> selectProjectList(Map<String, Object> params) throws Exception;
}