Sfoglia il codice sorgente

add
废液管理
修改异常标识

lifang 3 mesi fa
parent
commit
997e765583

+ 2 - 2
nb-service/web-service/src/main/resources/mapper/bus/BusClinicMapper.xml

@@ -334,10 +334,10 @@
             <if test="query.clinicName!=null and query.clinicName!=''">
                 and clinic_name like concat('%',#{query.clinicName},'%')
             </if>
-            <if test="query.liquidType!=null and query.liquidType == true">
+            <if test="query.liquidType!=null and query.liquidType == false">
                 and liquid_checker is null
             </if>
-            <if test="query.liquidType!=null and query.liquidType == false">
+            <if test="query.liquidType!=null and query.liquidType == true">
                 and liquid_checker is not null
             </if>
         </where>