|
@@ -176,6 +176,7 @@ public class GroupMemberBean extends BaseIndexPinyinBean implements Serializable
|
|
dest.writeString(this.userId);
|
|
dest.writeString(this.userId);
|
|
dest.writeString(this.imUserId);
|
|
dest.writeString(this.imUserId);
|
|
dest.writeInt(this.itemType);
|
|
dest.writeInt(this.itemType);
|
|
|
|
+ dest.writeValue(this.allowPrivateChatFlag);
|
|
dest.writeString(this.groupRoleType);
|
|
dest.writeString(this.groupRoleType);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -191,6 +192,7 @@ public class GroupMemberBean extends BaseIndexPinyinBean implements Serializable
|
|
this.userId = source.readString();
|
|
this.userId = source.readString();
|
|
this.imUserId = source.readString();
|
|
this.imUserId = source.readString();
|
|
this.itemType = source.readInt();
|
|
this.itemType = source.readInt();
|
|
|
|
+ this.allowPrivateChatFlag = (Boolean) source.readValue(Boolean.class.getClassLoader());
|
|
this.groupRoleType = source.readString();
|
|
this.groupRoleType = source.readString();
|
|
}
|
|
}
|
|
|
|
|
|
@@ -209,10 +211,11 @@ public class GroupMemberBean extends BaseIndexPinyinBean implements Serializable
|
|
this.userId = in.readString();
|
|
this.userId = in.readString();
|
|
this.imUserId = in.readString();
|
|
this.imUserId = in.readString();
|
|
this.itemType = in.readInt();
|
|
this.itemType = in.readInt();
|
|
|
|
+ this.allowPrivateChatFlag = (Boolean) in.readValue(Boolean.class.getClassLoader());
|
|
this.groupRoleType = in.readString();
|
|
this.groupRoleType = in.readString();
|
|
}
|
|
}
|
|
|
|
|
|
- public static final Creator<GroupMemberBean> CREATOR = new Creator<GroupMemberBean>() {
|
|
|
|
|
|
+ public static final Parcelable.Creator<GroupMemberBean> CREATOR = new Parcelable.Creator<GroupMemberBean>() {
|
|
@Override
|
|
@Override
|
|
public GroupMemberBean createFromParcel(Parcel source) {
|
|
public GroupMemberBean createFromParcel(Parcel source) {
|
|
return new GroupMemberBean(source);
|
|
return new GroupMemberBean(source);
|