package incheon.ags.pss.edit.mapper;

import java.util.List;

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

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB public interface PlanImageMapper {
    List<PlanImageVO> selectImageList(Long bizNo) throws Exception;
    void insertImage(PlanImageVO vo) throws Exception;
    void updateImage(PlanImageVO vo) throws Exception;
    void deleteImage(Long imgNo) throws Exception;
}
