package incheon.res.rdm.com.unitcst.service;

import incheon.res.rdm.com.unitcst.vo.RmtBiphDtVO;

import java.util.List;

public interface RmtBiphDtService {
	/**
	 * @MethodDESC : 사업예정지 변경이력 입력
	 */
	void insertRmtBiphDt(RmtBiphDtVO vo) throws Exception;
	
	/**
	 * @MethodDESC : 사업예정지 변경이력 삭제
	 */
	int deleteRmtBiphDt(RmtBiphDtVO vo) throws Exception;
	
	/**
	 * @MethodDESC : 사업예정지 변경이력 입력
	 */
	void insertHistory(List list) throws Exception;
}