From 2649583bb5b78e74315f47b3b08434ff210da269 Mon Sep 17 00:00:00 2001 From: DengBiao <2319963317@qq.com> Date: Sat, 8 Apr 2023 17:12:48 +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 | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gim/push.ext.proto b/gim/push.ext.proto index c1aa539..6e7ee30 100644 --- a/gim/push.ext.proto +++ b/gim/push.ext.proto @@ -19,6 +19,8 @@ enum PushCode { PC_REMOVE_BANNED_GROUP_MEMBER = 123; // 取消禁言群组成员 + PC_UPDATE_GROUP_MEMBER = 124; // 更新群组成员信息 + } // 推送码 PC_ADD_FRIEND = 100 @@ -79,3 +81,12 @@ message RemoveBannedGroupMemberPush { string remove_banned_user_name = 4; // 被解禁言的成员昵称 } +// 修改群组成员身份 PC_UPDATE_GROUP_MEMBER = 124 +message UpdateMemberPush { + int64 opt_id = 1; // 操作人用户id + string opt_name = 2; // 操作人昵称 + int64 update_user_id = 3; // 被修改的成员id + string update_user_name = 4; // 被修改的成员昵称 + int32 update_user_member_type = 5; // 被修改的成员身份类型 +} +