package incheon.sgp.rst.service;

import java.util.Map;

/**
 * @ClassName : RstVoluService.java
 * @Description : 부동산 시장동향 통계 서비스 인터페이스
 * @author : 이주훈
 * @since : 2025.10.27
 * @version : 1.0
 */
public interface RstVoluService {
    // 주택 매매 거래량 조회
    Map<String, Object> getSalesVolume(String crtrYm, String sttySggCd) throws Exception;
    
    // 주택 전월세 거래량 조회
    Map<String, Object> getRentalVolume(String crtrYm, String sttySggCd) throws Exception;
    
    // 최근 기준연월 데이터
    Map<String, Object> getCrtrYmRange() throws Exception;
    
    // 지도용 군구별 거래량 조회 (매매/전월세)
    Map<String, Object> selectRegionTradeVolume(String crtrYm) throws Exception;
}
