Procházet zdrojové kódy

2023-3-13 新布局图查询条件,实验室名称没有过滤查询。

chaiyunlong před 2 roky
rodič
revize
96643b8d7c

+ 2 - 1
zd-modules/zd-modules-laboratory/src/main/resources/mapper/laboratory/LabBuildFloorLayoutMapper.xml

@@ -57,7 +57,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="searchValue != null  and searchValue != '' ">
                 and (
                   t.room_num like concat('%', #{searchValue}, '%') or
-                  t.room_name like concat('%', #{searchValue}, '%')
+                  t.room_name like concat('%', #{searchValue}, '%') OR
+                  sb.name LIKE CONCAT('%', #{searchValue}, '%')
                 )
             </if>
             <if test="roomType != null "> and t.room_type = #{roomType}</if>