package incheon.ags.pss.edit.mapper;

import java.util.List;

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

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB public interface ModelMapper {
    List<ModelVO> selectModelList(Long bizNo) throws Exception;
    void insertModel(ModelVO vo) throws Exception;
    void updateModel(ModelVO vo) throws Exception;
    void deleteModel(String mdlNo) throws Exception;
}
