管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2023-02-01 a15f3a58184db586d4442fc51a545093dfc34a9f
src/main/java/com/lf/server/mapper/all/BaseQueryMapper.java
@@ -1,8 +1,10 @@
package com.lf.server.mapper.all;
import com.lf.server.entity.ctrl.IdNameEntity;
import com.lf.server.entity.ctrl.KeyValueEntity;
import com.lf.server.entity.ctrl.TabEntity;
import com.lf.server.entity.data.DictEntity;
import com.lf.server.entity.data.DirEntity;
import com.lf.server.entity.data.DomainEntity;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
@@ -85,4 +87,19 @@
     * @return 多线
     */
    public String selectRoute(double x1, double y1, double x2, double y2);
    /**
     * 查询位置
     *
     * @param wkt WKT字符串
     * @return 位置
     */
    public List<KeyValueEntity> selectLocation(String wkt);
    /**
     * 查询基础地理类别
     *
     * @return
     */
    public List<DirEntity> selectBaseType();
}