| 1234567891011121314151617181920212223242526272829 |
- <?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.onemap.apply.mapper.gdbh.TGdbhFlightVideoMapper">
- <resultMap type="TGdbhFlightVideoDto" id="TGdbhFlightVideoDtoResult">
- <result property="id" column="id"/>
- <result property="batch" column="batch"/>
- <result property="video_time" column="video_time"/>
- <result property="video_path" column="video_path"/>
- <result property="video_type" column="video_type"/>
- <result property="video_name" column="video_name"/>
- <result property="photo_path" column="photo_path"/>
- </resultMap>
- <select id="selectList" parameterType="TGdbhFlightVideoDto" resultMap="TGdbhFlightVideoDtoResult">
- SELECT *
- FROM t_gdbh_flight_video
- <where>
- <if test="batch!=null and batch!='' ">
- and batch = #{batch}
- </if>
- </where>
- order by video_time desc
- </select>
- </mapper>
|