|
@@ -102,6 +102,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="userName != null and userName != ''">
|
|
|
AND u.user_name like concat(concat('%',#{userName}),'%')
|
|
|
</if>
|
|
|
+ <if test="staffId != null and staffId != ''">
|
|
|
+ AND u.staffid like concat(concat('%',#{staffId}),'%')
|
|
|
+ </if>
|
|
|
+ <if test="nickName != null and nickName != ''">
|
|
|
+ AND u.nick_name like concat(concat('%',#{nickName}),'%')
|
|
|
+ </if>
|
|
|
<if test="status != null and status != ''">
|
|
|
AND u.status = #{status}
|
|
|
</if>
|