| 
					
				 | 
			
			
				@@ -56,6 +56,7 @@ public class LiveRoomInfoBean implements Parcelable { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public int blacklistFlag;//当前登录人是否是黑名单用户 0否 1是 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public int whether_mic;//是否允许连麦 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public int whether_chat;//是否允许聊天 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    public String roomType; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     @Override 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public int describeContents() { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -88,6 +89,7 @@ public class LiveRoomInfoBean implements Parcelable { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         dest.writeInt(this.blacklistFlag); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         dest.writeInt(this.whether_mic); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         dest.writeInt(this.whether_chat); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        dest.writeString(this.roomType); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public void readFromParcel(Parcel source) { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -115,6 +117,7 @@ public class LiveRoomInfoBean implements Parcelable { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.blacklistFlag = source.readInt(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.whether_mic = source.readInt(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.whether_chat = source.readInt(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.roomType = source.readString(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public LiveRoomInfoBean() { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -145,6 +148,7 @@ public class LiveRoomInfoBean implements Parcelable { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.blacklistFlag = in.readInt(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.whether_mic = in.readInt(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         this.whether_chat = in.readInt(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.roomType = in.readString(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     public static final Creator<LiveRoomInfoBean> CREATOR = new Creator<LiveRoomInfoBean>() { 
			 |