|
@@ -11,17 +11,12 @@
|
|
|
<if test="io.key != null and io.key != ''">
|
|
|
AND (username LIKE('%',#{io.key},'%')
|
|
|
OR phone LIKE('%',#{io.key},'%')
|
|
|
+ OR random_code LIKE('%',#{io.key},'%')
|
|
|
OR nickname LIKE('%',#{io.key},'%'))
|
|
|
</if>
|
|
|
- <if test="io.gender != null">
|
|
|
- AND gender = #{io.gender}
|
|
|
- </if>
|
|
|
<if test="io.status != null">
|
|
|
AND status = #{io.status}
|
|
|
</if>
|
|
|
- <if test="io.itemId != null">
|
|
|
- AND item_id = #{io.itemId}
|
|
|
- </if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|