Просмотр исходного кода

2023-10-26 网关在线离线查询过滤。

chaiyunlong лет назад: 2
Родитель
Сommit
17f01f742a

+ 3 - 3
zd-modules/zd-airbottle/src/main/resources/mapper/airbottle/DbBluetoothGatewayMapper.xml

@@ -32,16 +32,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="searchValue != null and searchValue != ''">
                 and sub_name like concat('%', #{searchValue}, '%')
             </if>
-            <if test="deptId != null and deptId!='' ">
+            <if test="deptId != null">
                 and dept_id = #{deptId}
             </if>
-            <if test="gatewayOnline != null and gatewayOnline!='' ">
+            <if test="gatewayOnline != null">
                 and gateway_online = #{gatewayOnline}
             </if>
             <if test="gatewayMac != null and gatewayMac!='' ">
                 and gateway_mac = #{gatewayMac}
             </if>
-            <if test="subId != null and subId!='' ">
+            <if test="subId != null ">
                 and sub_id = #{subId}
             </if>
         </where>