diff --git a/protos/Family.proto b/protos/Family.proto index a375f8f..a8544d0 100644 --- a/protos/Family.proto +++ b/protos/Family.proto @@ -256,4 +256,18 @@ import "CommonProto.proto"; optional int32 result = 1; optional int32 starCount = 2; } + message PersonalFightResult{ + optional int32 rank = 1; + optional int32 uid = 2; + optional string name = 3; + optional int32 head = 4; + optional int32 headFrame = 5; + optional int32 position = 6; + optional int32 attackCount = 7; + optional int32 starCount = 8; + } + //公会战个人战绩 + message PersonalFightResultResponse{ + repeated PersonalFightResult result = 1; + } diff --git a/protos/PlayerInfoProto.proto b/protos/PlayerInfoProto.proto index ba441bc..0ae9fdf 100644 --- a/protos/PlayerInfoProto.proto +++ b/protos/PlayerInfoProto.proto @@ -54,6 +54,7 @@ import "CommonProto.proto"; optional int32 treasureScore = 15; // 孙龙的宝藏分数 optional int32 hadBuyTreasure = 16; // 是否购买孙龙的宝藏 optional SignInInfo SignInInfo =17;//签到 + optional int32 firstTenth = 18;//首次十连是否用过 }