feat:航线增加无人机类型字段

This commit is contained in:
gyb 2026-02-27 19:44:29 +08:00
parent 4491b34704
commit aa5a6641d7
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
from airline_area
<where>
<if test="name != null and name != ''">
and name like concat('%', #{name}, '%')
and name like CONCAT('%', #{name}, '%')
</if>
<if test="areaType != null and areaType != ''">
and area_type = #{areaType}
@ -100,7 +100,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
and aa.create_by = #{createBy}
</if>
<if test="name != null and name != ''">
and aa.name like concat('%', #{name}, '%')
and aa.name like CONCAT('%', #{name}, '%')
</if>
<if test="areaType != null and areaType != ''">
and aa.area_type = #{areaType}