package incheon.ags.dss.regen.mapper;

import java.util.List;

import incheon.ags.dss.regen.vo.UrbMdlLibDtlVO;
import org.egovframe.rte.psl.dataaccess.mapper.Mapper;

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

    /** 모델도서관정보 상세 조회 */
    UrbMdlLibDtlVO selectUrbMdlLibDtlDetail(UrbMdlLibDtlVO vo) throws Exception;

    /** 모델도서관정보 목록 조회 */
    List<UrbMdlLibDtlVO> selectUrbMdlLibDtlList(UrbMdlLibDtlVO vo) throws Exception;

    /** 모델도서관정보 목록 총 개수 */
    int selectUrbMdlLibDtlListCnt(UrbMdlLibDtlVO vo) throws Exception;
}