SysDeptMapper.xml 524 B

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