From 0431f7835343841c2e475dacb8f4311245b9cdbe Mon Sep 17 00:00:00 2001 From: grimm <1769111741@qq.com> Date: Fri, 19 Jul 2024 15:14:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E9=94=AE=E5=8A=A9=E9=98=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/HeroInfoProto.proto | 7 ++++++- protos/MessageTypeProto.proto | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index 3f62f66..88f7a0b 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -749,7 +749,12 @@ message AssistInfoResponse{ message AssistUpDownRequest{ optional int32 id = 1; optional string heroId = 2; - optional int32 operate = 3;//1 上阵,2 卸下 + optional int32 operate = 3; //1 上阵,2 卸下 +} + +message AssistBatchUpDownRequest{ + repeated AssistBox boxs = 1; //助阵盒子信息,不用AssistBox中的state属性 + optional int32 operate = 3; //1 上阵,2 卸下 } // 图鉴 diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index 2f42af7..cfc1afe 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1709,6 +1709,8 @@ enum MessageType{ AssistUpDownRequest = 7000003; AssistUpDownResponse = 7000004; AssistInfoIndication = 7000005; + AssistBatchUpDownRequest = 70000041; + AssistBatchUpDownResponse = 70000051; // 图鉴 QueryBookImageRequest = 7000006;