From c6027b4a34b02e50a326eb71fbc31c3c1d65f2dd Mon Sep 17 00:00:00 2001 From: xuexinpeng Date: Tue, 16 Nov 2021 18:31:08 +0800 Subject: [PATCH] =?UTF-8?q?=E7=81=B5=E8=84=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/ArenaInfoProto.proto | 4 ++-- protos/CommonProto.proto | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/protos/ArenaInfoProto.proto b/protos/ArenaInfoProto.proto index 39728a9..81a85ac 100644 --- a/protos/ArenaInfoProto.proto +++ b/protos/ArenaInfoProto.proto @@ -231,7 +231,7 @@ import "CommonProto.proto"; optional int32 myOccupyId =2 ;//自己占领的灵脉id optional int32 myOccupyTime =3 ;//自己占领的灵脉id的时间 optional int32 remainChangeTimes = 4 ;//剩余挑战次数 - repeated LingMaiSecret recordData = 5;//当前页的灵脉数据 + repeated ArenaPersonInfo lingmaiData = 5;//当前页的灵脉数据 } //灵脉秘境挑战 message CrossLingmaiSecretAreaRequest{ @@ -239,7 +239,7 @@ import "CommonProto.proto"; } message CrossLingmaiSecretAreaResponse{ optional FightData fightData =1; // 战斗数据 - optional int32 result =2 ;//战斗结果 + optional int32 result =2 ;//战斗结果 } //灵脉秘境记录 message CrossLingmaiSecretAreaRecordRequest{ diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index db3be0d..3e4e259 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -337,6 +337,9 @@ option optimize_for = SPEED; optional int32 userTitle = 12; optional int32 userMount = 13; optional int32 practiceLevel = 14;//修行等级 + optional int32 lingmaiId = 15;//灵脉id + optional int32 getAwardTimeOrOccupyTime = 16; //得到奖励的时间或者占领的灵脉的时间 + }