package incheon.ags.dss.regen.service;

import java.util.List;

import incheon.ags.dss.regen.vo.UrbMdlLibDtlVO;

public interface UrbMdlLibDtlService {

	/**
     * 모델 라이브러리 목록 조회
     */
    List<UrbMdlLibDtlVO> selectUrbMdlLibDtlList(UrbMdlLibDtlVO searchVO) throws Exception;

    /**
     * 모델 라이브러리 목록 총 개수
     */
    int selectUrbMdlLibListCnt(UrbMdlLibDtlVO searchVO) throws Exception;

    /**
     * 모델 라이브러리 상세 정보 조회
     */
    UrbMdlLibDtlVO selectUrbMdlLibDetail(UrbMdlLibDtlVO vo) throws Exception;
}