|
@@ -385,7 +385,7 @@
|
|
|
|
|
|
<select id="findUserList" resultType="com.bz.smart_city.dto.UserRoleDto">
|
|
|
SELECT su.*,(SELECT GROUP_CONCAT(ss.name SEPARATOR '、') FROM sc_site_user ssu LEFT JOIN sc_site ss on(ss.id = ssu.site_id and ss.`status`= 1) WHERE ssu.user_id = su.id and ssu.`status` =1) as site_name FROM sc_user su
|
|
|
- WHERE 1 = 1 and su.status = 1 and su.is_super_admin = 0
|
|
|
+ WHERE 1 = 1 and su.status != 0 and su.is_super_admin = 0
|
|
|
<if test="username != null and username != ''"> AND su.username LIKE concat('%',#{username},'%')</if>
|
|
|
<if test="name != null and name != ''"> AND su.`name` LIKE concat('%',#{name},'%')</if>
|
|
|
<if test="mobilePhone != null and mobilePhone != ''"> AND su.mobile_phone LIKE concat('%',#{mobilePhone},'%')</if>
|