package incheon.sgp.rst.service;

import java.util.List;

import incheon.sgp.rst.vo.RstLasuResultVO;

/**
 * @ClassName : RstLasuService.java
 * @Description : 토지이용현황 통계 서비스 인터페이스
 * @author : 이주훈
 * @since : 2025.11.20
 * @version : 1.0
 */
public interface RstLasuService {
	// 최신 기준연월 조회
    List<String> selectCrtrYrList() throws Exception;
    
    // 토지이용현황 통계 조회
    RstLasuResultVO getLasuStats(String crtrYear, String sggCd, String emdCd, String liCd) throws Exception;
}
