管道基础大数据平台系统开发-【后端】-Server
1
13693261870
2022-11-23 c9190af38fd6fd9e71ca7db2b343e3a79f24ff5c
src/main/java/com/lf/server/mapper/bd/DlgAgnpMapper.java
@@ -1,25 +1,15 @@
package com.lf.server.mapper.bd;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.lf.server.entity.bd.DlgAgnpEntity;
import com.lf.server.entity.bd.DlgagnpEntity;
import com.lf.server.mapper.all.GeomBaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
/**
 * DlgAgnp
 * Dlgagnp
 * @author WWW
 */
@Mapper
@Repository
public interface DlgAgnpMapper extends BaseMapper<DlgAgnpEntity> {
    /**
     * 根据ID查询WKT
     *
     * @param gid
     * @return
     */
    @Select("select st_astext(geom) geom from bd.dlg_agnp where gid = #{gid}")
    String selectWktById(@Param("gid") Integer gid);
public interface DlgagnpMapper extends GeomBaseMapper<DlgagnpEntity> {
}