iailab-module-model/iailab-module-model-biz/src/main/resources/mapper/mcs/StScheduleSchemeDao.xml
@@ -37,6 +37,20 @@
                    #{item}
                </foreach>
            </if>
            <if test="params.title != null and params.title.size() > 0">
                and t.title in
                <foreach collection="params.title" item="item" open="(" close=")" separator=",">
                    #{item}
                </foreach>
            </if>
            <if test="params.contentKey != null and params.contentKey.size() > 0">
                AND (
                <foreach collection="params.contentKey" item="item"  open="" separator="OR" close="">
                    t.content like concat('%',#{item},'%')
                </foreach>
                )
            </if>
        </where>
        order by t.time desc