From 96fd9f5f438528dde8425ed80125777bc3d93df5 Mon Sep 17 00:00:00 2001 From: wangyuan Date: Thu, 7 May 2020 18:02:15 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=A6=E8=BF=9F=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/Family.proto | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/protos/Family.proto b/protos/Family.proto index dab8cbf..824bd9d 100644 --- a/protos/Family.proto +++ b/protos/Family.proto @@ -384,8 +384,19 @@ import "CommonProto.proto"; optional Drop drop = 1; } + message CarChallengeItem{ + optional int32 uid = 1; + optional string userName =2; + optional int32 force =3; + optional string guildName = 4; + optional int32 score = 5; + optional int32 hadChallenge =6; // 是否已挑战过,1:表示挑战过,2:未挑战过。 + optional int32 rank = 7; + optional TeamOneInfo teamInfo = 8; + } + message GetCarChallenegListResponse{ - repeated RankInfo rankInfo = 1; + repeated CarChallengeItem carChallengeItem = 1; optional int32 myRank = 2; //我的排名 optional int32 myScore = 3 ;//我的积分 }