From 0cc79b8f6c0991090cf67a5c4f726665b57da571 Mon Sep 17 00:00:00 2001 From: hahwu <31872165+hahwu@users.noreply.github.com> Date: Mon, 10 Mar 2025 17:33:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B6=E8=97=8F=E5=AE=A4=E5=8D=8F=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/Gameapi.proto | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/proto/Gameapi.proto b/proto/Gameapi.proto index ec62cf93..94a3e7f7 100644 --- a/proto/Gameapi.proto +++ b/proto/Gameapi.proto @@ -1945,8 +1945,13 @@ message ReqKafkaLog{ message ReqCollectInfo{} message ResCollectInfo{ - repeated int32 Id = 1; // 已领奖记录 - repeated ItemInfo Items = 2; // 领奖道具 + repeated int32 Id = 1; // [1,10,19] + repeated CollectItem Items = 2; // 领奖道具 +} + +message CollectItem{ + int32 Id = 1; // 索引 + repeated ItemInfo Items = 1; // 领奖道具 } message ReqCollect{