| | |
| | | </foreach> |
| | | </if> |
| | | <if test="keyword != null and keyword != ''"> |
| | | and ce.event_num::VARCHAR like concat('%', #{keyword}, '%') |
| | | and (ce.event_num::VARCHAR like concat('%', #{keyword}, '%') |
| | | or ce.event_name::VARCHAR like like concat('%', #{keyword}, '%')) |
| | | </if> |
| | | <if test="onlyMine != null and onlyMine == 1"> |
| | | and ce.dispose_user = #{userId} |
| | |
| | | </foreach> |
| | | </if> |
| | | <if test="keyword != null and keyword != ''"> |
| | | and ce.event_num like concat('%', #{keyword}, '%') |
| | | and (ce.event_num like concat('%', #{keyword}, '%') |
| | | or ce.event_name like concat('%', #{keyword}, '%')) |
| | | </if> |
| | | </select> |
| | | |