package incheon.ags.dss.report.mapper;

import java.util.List;
import org.egovframe.rte.psl.dataaccess.mapper.Mapper;

import incheon.ags.dss.report.vo.SimRptpItemVO;

@Mapper 
@incheon.com.config.annotation.MainDB 
public interface SimRptpItemMapper {

    /** 보고서포함항목 목록 조회 */
    List<SimRptpItemVO> selectSimRptpItemList(SimRptpItemVO vo) throws Exception;

    /** 보고서포함항목 등록 */
    void insertSimRptpItem(SimRptpItemVO vo) throws Exception;
    
    void deleteSimRptpItemByMst(SimRptpItemVO vo) throws Exception;
}