|
|
|
@ -83,9 +83,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
<if test="loginName != null and loginName != ''">
|
|
|
|
|
AND u.login_name like concat('%', #{loginName}, '%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="userName != null and userName != ''">
|
|
|
|
|
AND u.user_name like concat('%', #{userName}, '%')
|
|
|
|
|
</if>
|
|
|
|
|
<if test="status != null and status != ''">
|
|
|
|
|
AND u.status = #{status}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="examine != null and examine != ''">
|
|
|
|
|
AND u.examine = #{examine}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="phonenumber != null and phonenumber != ''">
|
|
|
|
|
AND u.phonenumber like concat('%', #{phonenumber}, '%')
|
|
|
|
|
</if>
|
|
|
|
|