package incheon.sgp.bas.mapper;

import java.util.List;
import incheon.com.config.annotation.ExternalDB;

import org.apache.ibatis.annotations.Mapper;

import incheon.sgp.tdr.vo.DronePoiVO;
import incheon.sgp.tdr.vo.TdrRequestVO;

/**
 * 포털지도 정보 관리를 위한 데이터 접근 매퍼
 */
@Mapper
@ExternalDB
public interface BasMapMapper {
    List<DronePoiVO> selectDronePoiList(TdrRequestVO tdrRequestVO);
}