feiyu02
2025-09-01 29383149f7040d89ae00ad48dc48bbcf46587946
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?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.flightfeather.uav.domain.mapper.GridCellMapper">
  <resultMap id="BaseResultMap" type="com.flightfeather.uav.domain.entity.GridCell">
    <!--
      WARNING - @mbg.generated
    -->
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="cell_index" jdbcType="INTEGER" property="cellIndex" />
    <result column="group_id" jdbcType="INTEGER" property="groupId" />
    <result column="father_cell_index" jdbcType="INTEGER" property="fatherCellIndex" />
    <result column="longitude" jdbcType="DECIMAL" property="longitude" />
    <result column="latitude" jdbcType="DECIMAL" property="latitude" />
    <result column="point1_lon" jdbcType="DECIMAL" property="point1Lon" />
    <result column="point1_lat" jdbcType="DECIMAL" property="point1Lat" />
    <result column="point2_lon" jdbcType="DECIMAL" property="point2Lon" />
    <result column="point2_lat" jdbcType="DECIMAL" property="point2Lat" />
    <result column="point3_lon" jdbcType="DECIMAL" property="point3Lon" />
    <result column="point3_lat" jdbcType="DECIMAL" property="point3Lat" />
    <result column="point4_lon" jdbcType="DECIMAL" property="point4Lon" />
    <result column="point4_lat" jdbcType="DECIMAL" property="point4Lat" />
  </resultMap>
  <sql id="Base_Column_List">
    <!--
      WARNING - @mbg.generated
    -->
    id, cell_index, group_id, father_cell_index, longitude, latitude, point1_lon, point1_lat, 
    point2_lon, point2_lat, point3_lon, point3_lat, point4_lon, point4_lat
  </sql>
</mapper>