package incheon.sgp.rst.mapper;

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

import incheon.sgp.rst.vo.RstLasuSpfcVO;
import incheon.sgp.rst.vo.RstLasuSummaryVO;
import incheon.sgp.rst.vo.RstLasuTrendVO;

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB
public interface RstLasuMapper {
	// 최신기준연월 가져오기
    List<String> selectCrtrYrList() throws Exception;
    
    // 토지이용현황 요약 정보
    RstLasuSummaryVO selectSummary(Map<String,Object> params);

    // 용도지역별 리스트
    List<RstLasuSpfcVO> selectSpfcList(Map<String,Object> params);

    // 개별공시지가 5년 시계열
    RstLasuTrendVO selectTrend(Map<String,Object> params);
    
}
