修改用户列表的用户名模糊查询改精准查询

master
zengwh 4 years ago
parent 0da439b854
commit 6a6b7a067b

@ -317,7 +317,7 @@
)
</if>
<if test="userName!=null and userName!=''">
and power_user.user_name LIKE '%${userName}%'
and power_user.user_name = #{userName}
</if>
<if test="name!=null and name!=''">
and power_user.name LIKE '%${name}%'
@ -372,7 +372,7 @@
)
</if>
<if test="userName!=null and userName!=''">
and power_user.user_name LIKE '%${userName}%'
and power_user.user_name = #{userName}
</if>
<if test="name!=null and name!=''">
and power_user.name LIKE '%${name}%'

Loading…
Cancel
Save