package incheon.uis.urf.mapper;

import java.util.List;

import org.egovframe.rte.psl.dataaccess.mapper.Mapper;

import incheon.com.config.annotation.MainDB;
import incheon.uis.urf.vo.RdtCnstDRequestVO;
import incheon.uis.urf.model.RdtCnstD;

/**
 * 이전공사대장 리스트 검색 전용 매퍼
 */

@org.egovframe.rte.psl.dataaccess.mapper.Mapper @incheon.com.config.annotation.MainDB public interface RdtCnstDListMapper {

    /**
     * 리스트 조회
     */
    List<RdtCnstD> selectContructionList(RdtCnstDRequestVO requestVO);

    /**
     * 총 개수
     */
    int selectContructionListTotalCount(RdtCnstDRequestVO requestVO);
}


