Browse Source

用户停用BUG

lin 4 years ago
parent
commit
83f29d94b1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      smart-city-platform/src/main/resources/mapper/UserMapper.xml

+ 1 - 1
smart-city-platform/src/main/resources/mapper/UserMapper.xml

@@ -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>