From 591a91dbafe6227c79c09239c8012d86dea40244 Mon Sep 17 00:00:00 2001 From: gaojie Date: Tue, 5 Mar 2019 10:27:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=A1=E7=89=8C,=E8=A3=85=E5=A4=87=E5=88=86?= =?UTF-8?q?=E9=A1=B5=E8=AF=B7=E6=B1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/HeroInfoProto.proto | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index 3a6b99e..6747a06 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -6,12 +6,12 @@ import "CommonProto.proto"; message GetHeroListInfoRequest{ - optional int32 num = 1; - optional string str = 2; + optional int32 index = 1; //第一次请求索引为0, 第二次:第一次索引+每页的数量 } message GetHeroListInfoResponse{ repeated Hero heroList = 1; + optional bool isSendFinish =2; //是否发送完成 } message DrawHeroRequest{ @@ -73,9 +73,12 @@ import "CommonProto.proto"; message HeroComposeResponse{ optional Drop drop = 1; } - + message GetAllEquipRequest{ + optional int32 index = 1; //第一次请求索引为0, 第二次:第一次索引+每页的数量 + } message GetAllEquipResponse{ repeated Equip equip =1; + optional bool isSendFinish =2; //是否发送完成 } message GetAllPokemonResponse{