package incheon.ags.pss.edit.mapper;

import java.util.List;

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

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB public interface SketchMapper {
    List<SketchVO> selectSketchList(Long bizNo) throws Exception;
    void insertSketch(SketchVO vo) throws Exception;
    void updateSketch(SketchVO vo) throws Exception;
    void deleteSketch(Long sketchNo) throws Exception;
}