|
|
|
@ -455,6 +455,15 @@ |
|
|
|
<if test="itemCode != null and itemCode != ''"> |
|
|
|
AND item.ITEM_CODE like concat('%', #{itemCode}, '%') |
|
|
|
</if> |
|
|
|
<if test="itemContent != null and itemContent != ''"> |
|
|
|
AND item.ITEM_CONTENT like concat('%', #{itemContent}, '%') |
|
|
|
</if> |
|
|
|
<if test="nickName != null and nickName != ''"> |
|
|
|
AND item.NICK_NAME like concat('%', #{nickName}, '%') |
|
|
|
</if> |
|
|
|
<if test="mobile != null and mobile != ''"> |
|
|
|
AND item.MOBILE like concat('%', #{mobile}, '%') |
|
|
|
</if> |
|
|
|
ORDER BY |
|
|
|
item.CREATED_TIME DESC |
|
|
|
</select> |
|
|
|
|