package incheon.sgp.rst.service;

import java.util.List;

import incheon.sgp.rst.vo.RstPrcBldgResultVO;
import incheon.sgp.rst.vo.RstPrcDetailVO;

/**
 * @ClassName : RstPrcService.java
 * @Description : 전세가율 가격통계 서비스 인터페이스
 * @author : 이주훈
 * @since : 2025.11.14
 * @version : 1.0
 */
public interface RstPrcService {
	String selectBldgExistYn(String emdCd) throws Exception;
	
    List<RstPrcBldgResultVO> selectBldgList(String emdCd) throws Exception;

    int selectPrcDetailCount(String ctpv, String sgg, String emd, String mno, String sno, Integer area) throws Exception;

    List<RstPrcDetailVO> selectPrcDetail(String ctpv, String sgg, String emd, String mno, String sno, Integer area, int firstIndex, int recordCountPerPage) throws Exception;
}
