|
@@ -54,6 +54,8 @@ public class LiveRoomInfoBean implements Parcelable {
|
|
|
public String tenantName;
|
|
|
public int totalLookNum;
|
|
|
public int blacklistFlag;//当前登录人是否是黑名单用户 0否 1是
|
|
|
+ public int whether_mic;//是否允许连麦
|
|
|
+ public int whether_chat;//是否允许聊天
|
|
|
|
|
|
@Override
|
|
|
public int describeContents() {
|
|
@@ -84,6 +86,8 @@ public class LiveRoomInfoBean implements Parcelable {
|
|
|
dest.writeString(this.tenantName);
|
|
|
dest.writeInt(this.totalLookNum);
|
|
|
dest.writeInt(this.blacklistFlag);
|
|
|
+ dest.writeInt(this.whether_mic);
|
|
|
+ dest.writeInt(this.whether_chat);
|
|
|
}
|
|
|
|
|
|
public void readFromParcel(Parcel source) {
|
|
@@ -109,6 +113,8 @@ public class LiveRoomInfoBean implements Parcelable {
|
|
|
this.tenantName = source.readString();
|
|
|
this.totalLookNum = source.readInt();
|
|
|
this.blacklistFlag = source.readInt();
|
|
|
+ this.whether_mic = source.readInt();
|
|
|
+ this.whether_chat = source.readInt();
|
|
|
}
|
|
|
|
|
|
public LiveRoomInfoBean() {
|
|
@@ -137,6 +143,8 @@ public class LiveRoomInfoBean implements Parcelable {
|
|
|
this.tenantName = in.readString();
|
|
|
this.totalLookNum = in.readInt();
|
|
|
this.blacklistFlag = in.readInt();
|
|
|
+ this.whether_mic = in.readInt();
|
|
|
+ this.whether_chat = in.readInt();
|
|
|
}
|
|
|
|
|
|
public static final Creator<LiveRoomInfoBean> CREATOR = new Creator<LiveRoomInfoBean>() {
|