From 265a5642ccc19406ecde575bff185a236ba01240 Mon Sep 17 00:00:00 2001 From: zhangshanxue Date: Wed, 13 May 2020 09:50:04 +0800 Subject: [PATCH] =?UTF-8?q?Task=E3=80=90=E6=96=B0=E6=88=98=E6=96=97?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E3=80=91=E5=85=AC=E4=BC=9A=E6=8F=B4=E5=8A=A9?= =?UTF-8?q?=20=E5=8D=8F=E8=AE=AE=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/Family.proto | 10 +++++++++- protos/MessageTypeProto.proto | 3 ++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/protos/Family.proto b/protos/Family.proto index 8731f85..701e7ed 100644 --- a/protos/Family.proto +++ b/protos/Family.proto @@ -479,6 +479,7 @@ import "CommonProto.proto"; optional bool sendMessage = 2; } message GuildSendHelpResponse{ + optional bool sendMessage = 1; } message GuildTakeHelpRewardRequest{//领取公会援助奖励 @@ -491,6 +492,7 @@ import "CommonProto.proto"; message GuildSendHelpMessageRequest{//发送公会援助 } message GuildSendHelpMessageResponse{ + optional bool sendMessage = 1; } @@ -501,7 +503,7 @@ import "CommonProto.proto"; } message GuildHelpInfoIndication{ //5点推送 修改推送 - optional int32 guildHelpTime =1 ; // 已经援助次数 + optional int32 uid = 1;//uid repeated GuildHelpInfo guildHelpInfo = 2;//求援信息 } @@ -512,5 +514,11 @@ import "CommonProto.proto"; message GuildHelpHelpOtherResponse{ } + message GuildHelpGetAllRequest{ //获取公会援助信息 + + } + message GuildHelpGetAllResponse{ + repeated GuildHelpInfoIndication guildHelpInfoIndication = 1;//求援信息 + } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index ac71a50..e3e3559 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -941,7 +941,8 @@ enum MessageType{ GuildHelpHelpOtherResponse = 303310; GuildHelpInfoIndication = 303311; //修改和5点推送 - + GuildHelpGetAllRequest = 303312 ; //获取成员援助信息 + GuildHelpGetAllRResponse = 303313 ; }