ArReAirMapper.xml
929 字节
<?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.sunyo.wlpt.transport.arrival.mapper.ArReAirMapper">
<resultMap id="BaseResultMap" type="com.sunyo.wlpt.transport.arrival.domain.ArReAir">
<!--@mbg.generated-->
<!--@Table arre_air-->
<id column="FLID" jdbcType="VARCHAR" property="flId"/>
<result column="FFID" jdbcType="VARCHAR" property="ffId"/>
<result column="FRLT" jdbcType="TIMESTAMP" property="frLt"/>
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
FLID, FFID, FRLT
</sql>
<select id="getDePeAirInfo" parameterType="java.lang.String" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from arre_air
where FLID =#{flId,jdbcType=VARCHAR}
</select>
</mapper>