|  | @@ -43,7 +43,7 @@ public class LiveRoomInfoBean implements Parcelable {
 | 
	
		
			
				|  |  |      public String speakerImUserId;
 | 
	
		
			
				|  |  |      public String speakerName;
 | 
	
		
			
				|  |  |      public String speakerPic;
 | 
	
		
			
				|  |  | -    public int subjectId;
 | 
	
		
			
				|  |  | +    public String subjectId;
 | 
	
		
			
				|  |  |      public String type;//房间类型 live直播课  temp临时直播间
 | 
	
		
			
				|  |  |      private LiveRoomConfigBean liveRoomConfig;
 | 
	
		
			
				|  |  |      private String userSig;
 | 
	
	
		
			
				|  | @@ -238,7 +238,7 @@ public class LiveRoomInfoBean implements Parcelable {
 | 
	
		
			
				|  |  |          dest.writeString(this.speakerId);
 | 
	
		
			
				|  |  |          dest.writeString(this.speakerName);
 | 
	
		
			
				|  |  |          dest.writeString(this.speakerPic);
 | 
	
		
			
				|  |  | -        dest.writeInt(this.subjectId);
 | 
	
		
			
				|  |  | +        dest.writeString(this.subjectId);
 | 
	
		
			
				|  |  |          dest.writeString(this.type);
 | 
	
		
			
				|  |  |          dest.writeParcelable(this.liveRoomConfig, flags);
 | 
	
		
			
				|  |  |          dest.writeString(this.userSig);
 | 
	
	
		
			
				|  | @@ -260,7 +260,7 @@ public class LiveRoomInfoBean implements Parcelable {
 | 
	
		
			
				|  |  |          this.speakerId = source.readString();
 | 
	
		
			
				|  |  |          this.speakerName = source.readString();
 | 
	
		
			
				|  |  |          this.speakerPic = source.readString();
 | 
	
		
			
				|  |  | -        this.subjectId = source.readInt();
 | 
	
		
			
				|  |  | +        this.subjectId = source.readString();
 | 
	
		
			
				|  |  |          this.type = source.readString();
 | 
	
		
			
				|  |  |          this.liveRoomConfig = source.readParcelable(LiveRoomConfigBean.class.getClassLoader());
 | 
	
		
			
				|  |  |          this.userSig = source.readString();
 |