1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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.MissionMapper">
  <resultMap id="BaseResultMap" type="com.flightfeather.uav.domain.entity.Mission">
    <!--
      WARNING - @mbg.generated
    -->
    <id column="mission_code" jdbcType="VARCHAR" property="missionCode" />
    <result column="device_type" jdbcType="VARCHAR" property="deviceType" />
    <result column="device_code" jdbcType="VARCHAR" property="deviceCode" />
    <result column="start_time" jdbcType="TIMESTAMP" property="startTime" />
    <result column="end_time" jdbcType="TIMESTAMP" property="endTime" />
    <result column="district_name" jdbcType="VARCHAR" property="districtName" />
    <result column="data_pulled" jdbcType="BIT" property="dataPulled" />
  </resultMap>
  <sql id="Base_Column_List">
    <!--
      WARNING - @mbg.generated
    -->
    mission_code, device_type, device_code, start_time, end_time, district_name, data_pulled
  </sql>
</mapper>