package incheon.ags.pss.edit.mapper;

import java.util.List;

import incheon.ags.pss.edit.vo.SimulationVO;

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB public interface SimulationMapper {
//	List<SimulationVO> selectSimulationList(SimulationVO vo) throws Exception;
    List<SimulationVO> selectSimulationList(SimulationVO vo) throws Exception;
    SimulationVO selectSimulation(Long smltNo) throws Exception;
    void insertSimulation(SimulationVO vo) throws Exception;
    void updateSimulation(SimulationVO vo) throws Exception;
    void deleteSimulation(Long smltNo) throws Exception;
    
}