Fix bug
This commit is contained in:
parent
eed59f468c
commit
788ab524c2
@ -53,6 +53,9 @@ class UserInfo {
|
|||||||
/// 全局免打扰 0:正常;1:不接受消息;2:接受在线消息不接受离线消息;
|
/// 全局免打扰 0:正常;1:不接受消息;2:接受在线消息不接受离线消息;
|
||||||
int? globalRecvMsgOpt;
|
int? globalRecvMsgOpt;
|
||||||
|
|
||||||
|
/// 是允许添加为好友
|
||||||
|
bool? isAllowAddFriend;
|
||||||
|
|
||||||
UserInfo({
|
UserInfo({
|
||||||
this.publicInfo,
|
this.publicInfo,
|
||||||
this.friendInfo,
|
this.friendInfo,
|
||||||
@ -71,6 +74,7 @@ class UserInfo {
|
|||||||
this.createTime,
|
this.createTime,
|
||||||
this.remark,
|
this.remark,
|
||||||
this.globalRecvMsgOpt,
|
this.globalRecvMsgOpt,
|
||||||
|
this.isAllowAddFriend,
|
||||||
});
|
});
|
||||||
|
|
||||||
// UserInfo.self(Map<String, dynamic> json) {
|
// UserInfo.self(Map<String, dynamic> json) {
|
||||||
@ -110,6 +114,7 @@ class UserInfo {
|
|||||||
ex = json['ex'] ?? _ex;
|
ex = json['ex'] ?? _ex;
|
||||||
createTime = json['createTime'];
|
createTime = json['createTime'];
|
||||||
globalRecvMsgOpt = json['globalRecvMsgOpt'];
|
globalRecvMsgOpt = json['globalRecvMsgOpt'];
|
||||||
|
isAllowAddFriend = json['isAllowAddFriend'];
|
||||||
}
|
}
|
||||||
|
|
||||||
Map<String, dynamic> toJson() {
|
Map<String, dynamic> toJson() {
|
||||||
@ -131,6 +136,7 @@ class UserInfo {
|
|||||||
data['createTime'] = this.createTime;
|
data['createTime'] = this.createTime;
|
||||||
data['remark'] = this.remark;
|
data['remark'] = this.remark;
|
||||||
data['globalRecvMsgOpt'] = this.globalRecvMsgOpt;
|
data['globalRecvMsgOpt'] = this.globalRecvMsgOpt;
|
||||||
|
data['isAllowAddFriend'] = this.isAllowAddFriend;
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user