|  | @@ -34,15 +34,17 @@
 | 
	
		
			
				|  |  |          where a.user_type_ like '%STUDENT%'
 | 
	
		
			
				|  |  |          and a.lock_flag_ = 0
 | 
	
		
			
				|  |  |          and a.del_flag_ = 0
 | 
	
		
			
				|  |  | -        and b.room_uid_ = #{roomUid}
 | 
	
		
			
				|  |  | -        <if test="tenantId != null ">
 | 
	
		
			
				|  |  | -            and tenant_id_ = #{tenantId}
 | 
	
		
			
				|  |  | +        and b.room_uid_ = #{param.roomUid}
 | 
	
		
			
				|  |  | +        <if test="param.tenantId != null ">
 | 
	
		
			
				|  |  | +            and tenant_id_ = #{param.tenantId}
 | 
	
		
			
				|  |  |          </if>
 | 
	
		
			
				|  |  | +        <if test="param.search != null ">
 | 
	
		
			
				|  |  |              and (
 | 
	
		
			
				|  |  | -                 `id_` LIKE CONCAT('%', #{search},'%')
 | 
	
		
			
				|  |  | -                  OR `username_` LIKE CONCAT('%', #{search},'%')
 | 
	
		
			
				|  |  | -                 OR `phone_` LIKE CONCAT('%', #{search},'%')
 | 
	
		
			
				|  |  | +                 `id_` LIKE CONCAT('%', #{param.search},'%')
 | 
	
		
			
				|  |  | +                  OR `username_` LIKE CONCAT('%', #{param.search},'%')
 | 
	
		
			
				|  |  | +                 OR `phone_` LIKE CONCAT('%', #{param.search},'%')
 | 
	
		
			
				|  |  |                 )
 | 
	
		
			
				|  |  | +        </if>
 | 
	
		
			
				|  |  |      </select>
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      <select id="queryBlackList"  parameterType="map" resultType="com.ym.mec.biz.dal.vo.ImLiveRoomBlackVo">
 |