feat:航线增加无人机类型字段
This commit is contained in:
parent
4491b34704
commit
aa5a6641d7
|
|
@ -59,7 +59,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
from airline_area
|
from airline_area
|
||||||
<where>
|
<where>
|
||||||
<if test="name != null and name != ''">
|
<if test="name != null and name != ''">
|
||||||
and name like concat('%', #{name}, '%')
|
and name like CONCAT('%', #{name}, '%')
|
||||||
</if>
|
</if>
|
||||||
<if test="areaType != null and areaType != ''">
|
<if test="areaType != null and areaType != ''">
|
||||||
and area_type = #{areaType}
|
and area_type = #{areaType}
|
||||||
|
|
@ -100,7 +100,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
and aa.create_by = #{createBy}
|
and aa.create_by = #{createBy}
|
||||||
</if>
|
</if>
|
||||||
<if test="name != null and name != ''">
|
<if test="name != null and name != ''">
|
||||||
and aa.name like concat('%', #{name}, '%')
|
and aa.name like CONCAT('%', #{name}, '%')
|
||||||
</if>
|
</if>
|
||||||
<if test="areaType != null and areaType != ''">
|
<if test="areaType != null and areaType != ''">
|
||||||
and aa.area_type = #{areaType}
|
and aa.area_type = #{areaType}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue