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 ; }