From 209871881a5ee376bd6fed49ebdb83b1cb8f7558 Mon Sep 17 00:00:00 2001 From: DengBiao <2319963317@qq.com> Date: Fri, 21 Apr 2023 18:18:11 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E6=92=A4=E5=9B=9E=E6=B6=88=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gim/push.ext.proto | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/gim/push.ext.proto b/gim/push.ext.proto index 6e7ee30..57a9f15 100644 --- a/gim/push.ext.proto +++ b/gim/push.ext.proto @@ -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