package incheon.uis.ums.mapper;

import org.egovframe.rte.psl.dataaccess.mapper.Mapper;
import incheon.com.config.annotation.MainDB;

/**
 * 횡단면도 조회 Mapper
 *
 * @author 호지원
 * @since 2025.01.26
 */
@Mapper
@MainDB
public interface UisCrossSectionMapper {

    /**
     * 횡단면도 데이터 조회
     * @param lineWkt 라인 WKT 문자열
     * @return JSON 형태의 횡단면도 데이터
     */
    String selectCrossSection(String lineWkt);
}