package incheon.ags.pss.edit.mapper;

import java.util.List;

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

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB public interface ViewpointMapper {
    List<ViewpointVO> selectViewpointList(Long bizNo) throws Exception;
    void insertViewpoint(ViewpointVO vo) throws Exception;
    void updateViewpoint(ViewpointVO vo) throws Exception;
    void deleteViewpoint(Long psvpNo) throws Exception;
}