LngLatCompanyMapper.xml 743 B

12345678910111213141516171819
  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.hssx.cloudmodel.mapper.LngLatCompanyMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.hssx.cloudmodel.entity.LngLatCompany">
  6. <id column="id" property="id" />
  7. <result column="y_lng" property="yLng" />
  8. <result column="x_lat" property="xLat" />
  9. <result column="indate" property="indate" />
  10. <result column="company_id" property="companyId" />
  11. </resultMap>
  12. <!-- 通用查询结果列 -->
  13. <sql id="Base_Column_List">
  14. id, y_lng, x_lat, indate, company_id
  15. </sql>
  16. </mapper>