fix:航线bug修复
This commit is contained in:
parent
ca98f67f13
commit
0fd39cf7f3
|
|
@ -42,6 +42,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<foreach item="id" collection="list" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
order by update_time desc
|
||||
</select>
|
||||
|
||||
<!-- 根据航线名称模糊查询航线文件 -->
|
||||
|
|
@ -49,6 +50,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
select id, name, air_vendor, air_type, file_name, file_url, type, source, status, file_md5, climb_mode, altitude, flight_speed, global_waypoint_height, photo_mode, create_by, create_time, update_by, update_time, remark
|
||||
from airline_file
|
||||
where name like concat(#{name}, '%')
|
||||
order by update_time desc
|
||||
|
||||
</select>
|
||||
|
||||
<!-- 根据分组ID和航线名称模糊查询航线文件 -->
|
||||
|
|
@ -59,6 +62,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
where afgi.del_flag = 0
|
||||
and afgi.group_id = #{groupId}
|
||||
and af.name like concat(#{name}, '%')
|
||||
order by af.update_time desc
|
||||
|
||||
</select>
|
||||
|
||||
<!-- 更新航线文件 -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue