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

宣教广场增加标题过滤插叙

wangzl 4 месяцев назад
Родитель
Сommit
53ac65055b

+ 3 - 0
tr-modules/tr-module-smartFollowUp/src/main/resources/mapper/smart/BizMissionDocSquareMapper.xml

@@ -129,6 +129,9 @@
             <if test="query.phase != null and query.phase != ''">
                 AND bmds.phase = #{query.phase}
             </if>
+            <if test="query.title != null and query.title != ''">
+                AND bmds.title LIKE CONCAT('%',#{query.title},'%')
+            </if>
         </where>
     </select>
 </mapper>