fix:航线bug修复

This commit is contained in:
gyb 2026-03-09 11:40:18 +08:00
parent ca98f67f13
commit 0fd39cf7f3
1 changed files with 5 additions and 0 deletions

View File

@ -42,6 +42,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<foreach item="id" collection="list" open="(" separator="," close=")"> <foreach item="id" collection="list" open="(" separator="," close=")">
#{id} #{id}
</foreach> </foreach>
order by update_time desc
</select> </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 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 from airline_file
where name like concat(#{name}, '%') where name like concat(#{name}, '%')
order by update_time desc
</select> </select>
<!-- 根据分组ID和航线名称模糊查询航线文件 --> <!-- 根据分组ID和航线名称模糊查询航线文件 -->
@ -59,6 +62,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where afgi.del_flag = 0 where afgi.del_flag = 0
and afgi.group_id = #{groupId} and afgi.group_id = #{groupId}
and af.name like concat(#{name}, '%') and af.name like concat(#{name}, '%')
order by af.update_time desc
</select> </select>
<!-- 更新航线文件 --> <!-- 更新航线文件 -->