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

import java.util.List;

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

public interface VRService {
    List<VrRcdHistVO> selectVrRecordList(Long smltNo) throws Exception;
    void recordVrPosition(VrRcdHistVO vo) throws Exception;
    void deleteVrRecord(String rcdNo) throws Exception;
    void deleteVrRecordsBySmltNo(Long smltNo) throws Exception;
}