Merge branch 'master' of http://dlindusit.com:53929/r/iailab-plat
| | |
| | | #{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 |
| | | |