|
|
@ -14,8 +14,8 @@ |
|
|
|
select * from sso_enhanced_user_view |
|
|
|
select * from sso_enhanced_user_view |
|
|
|
<where> |
|
|
|
<where> |
|
|
|
del_flag = 0 |
|
|
|
del_flag = 0 |
|
|
|
<if test="param.userName != null and param.userName != ''"> |
|
|
|
<if test="param.username != null and param.username != ''"> |
|
|
|
and user_name like concat('%', #{param.userName}, '%') |
|
|
|
and user_name like concat('%', #{param.username}, '%') |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="param.nickName != null and param.nickName != ''"> |
|
|
|
<if test="param.nickName != null and param.nickName != ''"> |
|
|
|
and nick_name like concat('%', #{param.nickName}, '%') |
|
|
|
and nick_name like concat('%', #{param.nickName}, '%') |
|
|
@ -43,8 +43,8 @@ |
|
|
|
select * from sso_enhanced_user_view |
|
|
|
select * from sso_enhanced_user_view |
|
|
|
<where> |
|
|
|
<where> |
|
|
|
del_flag = 0 |
|
|
|
del_flag = 0 |
|
|
|
<if test="userName != null and userName != ''"> |
|
|
|
<if test="username != null and username != ''"> |
|
|
|
and user_name = #{userName} |
|
|
|
and user_name = #{username} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="nickName != null and nickName != ''"> |
|
|
|
<if test="nickName != null and nickName != ''"> |
|
|
|
and nick_name = #{nickName} |
|
|
|
and nick_name = #{nickName} |
|
|
|