| 12345678910111213 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.unis.vis.mapper.SysDeptMapper">
- <!-- 地图点位 -->
- <select id="getMapPoint" resultType="com.unis.vis.model.SysDept">
- select DEPT_ID, -- 仓库ID
- NAME, -- 仓库名称
- LONGITUDE, -- 经度
- DIMENSION --维度
- from SYS_DEPT where DEPT_TYPE = 3
- </select>
- </mapper>
|