UserInfo FriendInfo GroupInfo

This commit is contained in:
wenxu12345 2021-12-20 17:27:05 +08:00
parent 3ba881f641
commit 2876e77a08

View File

@ -95,36 +95,62 @@ message OfflinePushInfo{
bool ISBadgeCount = 5; bool ISBadgeCount = 5;
} }
message GroupInfoTip{
message GroupInfo{
string GroupID = 1; string GroupID = 1;
string GroupName = 2; string GroupName = 2;
string Notification = 3; string Notification = 3;
string Introduction = 4; string Introduction = 4;
string FaceUrl = 5; string FaceUrl = 5;
string Ex = 6; string OwnerID = 6;
string OwnerID = 7; int64 CreateTime = 7;
uint64 CreateTime = 8; uint32 MemberCount = 8;
uint32 MemberCount = 9;
} }
message GroupMemberFullInfo{
type GroupMemberFullInfoTip struct { string GroupID = 1 ;
string GroupId = 1 ; string UserID = 2 ;
string UserId = 2 ; int32 Role = 3;
int Role = 3; int64 JoinTime = 4;
uint64 JoinTime = 4;
string NickName = 5; string NickName = 5;
string FaceUrl =6; string FaceUrl =6;
} }
message FriendInfo{
string UserID = 1;
string Nickname = 2;
string FaceUrl = 3;
int32 Gender = 4;
string Mobile = 5;
string Birth = 6;
string Email = 7;
string Remark = 8;
}
message UserInfo{
string UserID = 1;
string Nickname = 2;
string FaceUrl = 3;
int32 Gender = 4;
string Mobile = 5;
string Birth = 6;
string Email = 7;
}
message UserPublicInfo{
string UserID = 1;
string Nickname = 2;
string FaceUrl = 3;
int32 Gender = 4;
}
message CreateGroupTip{ message CreateGroupTip{
GroupInfoTip group = 1; GroupInfo group = 1;
UserInfoTip creator = 2; UserInfo creator = 2;
repeated GroupMemberFullInfoTip memberList = 3; repeated GroupMemberFullInfo memberList = 3;
} }