package incheon.sgp.rst.service;

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

import incheon.sgp.rst.vo.RstPpltnVO;

/**
 * @ClassName : RstPpltnService.java
 * @Description : 전입/전출 인구통계 서비스 인터페이스
 * @author : 이주훈
 * @since : 2025.11.10
 * @version : 1.0
 */
public interface RstPpltnService {
	Map<String, Object> getCrtrYmRangePpltn();
	
	List<RstPpltnVO> selectMvInList(RstPpltnVO vo);
	
	List<RstPpltnVO> selectMvOutList(RstPpltnVO vo);
}
