package incheon.ags.pss.edit.service;

import java.util.List;

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

public interface PlanImageService {
    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;
}
