package incheon.ags.dss.config.mapper;

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

import incheon.ags.dss.config.vo.SimTmsresDtlVO;

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

    /** 시계열설정 등록 */
    void insertSimTmsresDtl(SimTmsresDtlVO vo) throws Exception;

    /** 시계열설정 상세 조회 */
    SimTmsresDtlVO selectSimTmsresDtlDetail(SimTmsresDtlVO vo) throws Exception;

    /** 시계열설정 수정 */
    void updateSimTmsresDtl(SimTmsresDtlVO vo) throws Exception;

    /** 시계열설정 삭제 */
    void deleteSimTmsresDtl(SimTmsresDtlVO vo) throws Exception;

//    /** 시계열설정 목록 조회 */
//    List<SimTmsresDtlVO> selectSimTmsresDtlList(SimTmsresDtlVO vo) throws Exception;
//
//    /** 시계열설정 목록 총 개수 */
//    int selectSimTmsresDtlListCnt(SimTmsresDtlVO vo) throws Exception;
}