package incheon.ags.pss.edit.smlt.mapper;

import java.util.List;

import incheon.ags.pss.edit.smlt.vo.VrRcdHistVO;

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB public interface VRMapper {
    List<VrRcdHistVO> selectVrRecordList(Long bizNo) throws Exception;
    void recordVrPosition(VrRcdHistVO vo) throws Exception;
    void deleteVrRecord(String rcdNo) throws Exception;
    void deleteVrRecordsBySmltNo(Long smltNo) throws Exception;
}