You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.3 KiB
XML
27 lines
1.3 KiB
XML
<?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.cuit.railway.mapper.MapServiceMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.cuit.railway.entity.MapService">
|
|
<id property="id" column="id" jdbcType="OTHER"/>
|
|
<result property="uavMinus" column="uav_minus" jdbcType="VARCHAR"/>
|
|
<result property="streamName" column="stream_name" jdbcType="VARCHAR"/>
|
|
<result property="siteId" column="site_id" jdbcType="VARCHAR"/>
|
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
|
<result property="indexName" column="index_name" jdbcType="VARCHAR"/>
|
|
<result property="indexMin" column="index_min" jdbcType="DOUBLE"/>
|
|
<result property="indexMax" column="index_max" jdbcType="DOUBLE"/>
|
|
<result property="range" column="range" jdbcType="VARCHAR"/>
|
|
<result property="mapService" column="map_service" jdbcType="VARCHAR"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,uav_minus,stream_name,
|
|
site_id,create_time,index_name,
|
|
index_min,index_max,range,
|
|
map_service
|
|
</sql>
|
|
</mapper>
|