From 5e70446bd297b3e7d734f15ddb64f18deef3bb2b Mon Sep 17 00:00:00 2001 From: wangyuan Date: Fri, 8 May 2020 15:16:03 +0800 Subject: [PATCH] car record --- protos/CommonProto.proto | 5 +++++ protos/Family.proto | 4 ++++ protos/MessageTypeProto.proto | 4 ++++ 3 files changed, 13 insertions(+) diff --git a/protos/CommonProto.proto b/protos/CommonProto.proto index 816fe38..b4a4c3e 100644 --- a/protos/CommonProto.proto +++ b/protos/CommonProto.proto @@ -779,4 +779,9 @@ option optimize_for = SPEED; optional int32 state = 3;//1已领取 0未领取 optional int32 totleAmt = 4;//当前累计金额 } + + message CarGrapRecordItem{ + optional int32 time =1; + optional string content = 2; + } \ No newline at end of file diff --git a/protos/Family.proto b/protos/Family.proto index 15df8a9..b48823a 100644 --- a/protos/Family.proto +++ b/protos/Family.proto @@ -443,5 +443,9 @@ import "CommonProto.proto"; optional int32 damage = 2; optional Drop drop = 3; } + + message CarGrapRecordResponse{ + repeated CarGrapRecordItem carChallengeItem =1; + } diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 202f31c..652585e 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -465,6 +465,10 @@ enum MessageType{ GET_CAR_CHALLENEG_LIST_REQUEST = 16672 ;// 获取车迟匹配信息 GET_CAR_CHALLENEG_LIST_RESPONSE = 16673; + + GET_CAR_GRAP_RECORD_REQUEST = 16674; //获取车迟抢夺记录 + GET_CAR_GRAP_RECORD_RESPONSE = 16675; + // H 10700 HERO_RAND_REQQUEST = 10701; HERO_RAND_RESPONSE = 10702;