From cd65719a1487a4e147128fdb53ae04acb362cf9b Mon Sep 17 00:00:00 2001 From: lvxinran Date: Fri, 13 Dec 2019 08:08:27 +0800 Subject: [PATCH] =?UTF-8?q?=E9=99=90=E6=97=B6=E6=8A=BD=E5=8D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/MessageTypeProto.proto | 2 ++ protos/PlayerInfoProto.proto | 8 +++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 96e42ba..1bb9660 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -502,6 +502,8 @@ enum MessageType{ // N 11300 NOTIFY_PAY_SUCCESS_INDICATION = 11300 ; // 通知前端充值成功 + NEXT_ACTIVITY_REQUEST = 11301;//活动预告 + NEXT_ACTIVITY_RESPONSE = 11302; // O 11400 // P 11500 POKEMON_COMONPENT_LEVELUP_REQUEST = 11500; //异妖相关 组件放置升级 diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index 1003932..938c80c 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -637,5 +637,11 @@ import "CommonProto.proto"; repeated UserRank ranks = 1; optional RankInfo myRankInfo = 2; } - + message NextActivityRequest{ + optional int32 activiteId = 1; + } + message NextActivityResponse{ + optional int32 id = 1;//下期活动id + optional int32 time = 2;//下期活动开启时间 + } \ No newline at end of file