Browse Source

add 撤回消息

master
DengBiao 1 year ago
parent
commit
209871881a
1 changed files with 8 additions and 5 deletions
  1. +8
    -5
      gim/push.ext.proto

+ 8
- 5
gim/push.ext.proto View File

@@ -8,11 +8,13 @@ enum PushCode {
PC_ADD_DEFAULT = 0;

PC_ADD_FRIEND = 100; // 添加好友请求

PC_AGREE_ADD_FRIEND = 101; // 同意添加好友

PC_UPDATE_GROUP = 110; // 更新群组

PC_ADD_GROUP_MEMBERS = 120; // 添加群组成员

PC_REMOVE_GROUP_MEMBER = 121; // 移除群组成员

PC_BANNED_GROUP_MEMBER = 122; // 禁言群组成员
@@ -42,11 +44,12 @@ message AgreeAddFriendPush {
message UpdateGroupPush {
int64 opt_id = 1; // 操作人用户id
string opt_name = 2; // 操作人昵称
string name = 3; // 群组名称
string avatar_url = 4; // 群组头像
string introduction = 5; // 群组简介
bool isUpdateIntroduction = 6; // 是否更新群组简介
string extra = 7; // 附加字段
string opt_avatar_url = 3; // 操作人头像
string name = 4; // 群组名称
string avatar_url = 5; // 群组头像
string introduction = 6; // 群组简介
bool isUpdateIntroduction = 7; // 是否更新群组简介
string extra = 8; // 附加字段
}

// 添加群组成员 PC_AGREE_ADD_GROUPS = 120


Loading…
Cancel
Save