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{