feiyu02
2025-01-23 698f8f0f22af4c66581ce284407e986ca036aec6
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?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.SceneInfoMapper">
  <resultMap id="BaseResultMap" type="com.flightfeather.uav.domain.entity.SceneInfo">
    <!--
      WARNING - @mbg.generated
    -->
    <id column="GUID" jdbcType="VARCHAR" property="guid" />
    <result column="Name" jdbcType="VARCHAR" property="name" />
    <result column="Type_ID" jdbcType="TINYINT" property="typeId" />
    <result column="Type" jdbcType="VARCHAR" property="type" />
    <result column="Subtype_ID" jdbcType="TINYINT" property="subtypeId" />
    <result column="Subtype" jdbcType="VARCHAR" property="subtype" />
    <result column="Location" jdbcType="VARCHAR" property="location" />
    <result column="Longitude" jdbcType="DECIMAL" property="longitude" />
    <result column="Latitude" jdbcType="DECIMAL" property="latitude" />
    <result column="Province_Code" jdbcType="VARCHAR" property="provinceCode" />
    <result column="Province_Name" jdbcType="VARCHAR" property="provinceName" />
    <result column="City_Code" jdbcType="VARCHAR" property="cityCode" />
    <result column="City_Name" jdbcType="VARCHAR" property="cityName" />
    <result column="District_Code" jdbcType="VARCHAR" property="districtCode" />
    <result column="District_Name" jdbcType="VARCHAR" property="districtName" />
    <result column="Town_Code" jdbcType="VARCHAR" property="townCode" />
    <result column="Town_Name" jdbcType="VARCHAR" property="townName" />
    <result column="Contacts_T" jdbcType="VARCHAR" property="contactsT" />
    <result column="Contacts_WX" jdbcType="VARCHAR" property="contactsWx" />
    <result column="Contacts" jdbcType="VARCHAR" property="contacts" />
    <result column="Create_Date" jdbcType="TIMESTAMP" property="createDate" />
    <result column="Update_Date" jdbcType="TIMESTAMP" property="updateDate" />
    <result column="Extension1" jdbcType="VARCHAR" property="extension1" />
    <result column="Extension2" jdbcType="VARCHAR" property="extension2" />
    <result column="Remark" jdbcType="VARCHAR" property="remark" />
    <result column="Area_Code" jdbcType="VARCHAR" property="areaCode" />
    <result column="Area" jdbcType="VARCHAR" property="area" />
    <result column="Management_Company_Id" jdbcType="VARCHAR" property="managementCompanyId" />
    <result column="Management_Company" jdbcType="VARCHAR" property="managementCompany" />
  </resultMap>
  <sql id="Base_Column_List">
    <!--
      WARNING - @mbg.generated
    -->
    GUID, Name, Type_ID, Type, Subtype_ID, Subtype, Location, Longitude, Latitude, Province_Code, 
    Province_Name, City_Code, City_Name, District_Code, District_Name, Town_Code, Town_Name, 
    Contacts_T, Contacts_WX, Contacts, Create_Date, Update_Date, Extension1, Extension2, 
    Remark, Area_Code, Area, Management_Company_Id, Management_Company
  </sql>
</mapper>