From 1334887b0613dd22a9ec532ccff42b6d4e6495aa Mon Sep 17 00:00:00 2001 From: grimm <1769111741@qq.com> Date: Tue, 16 Apr 2024 17:27:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9B=BE=E9=89=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/HeroInfoProto.proto | 8 ++++++++ protos/MessageTypeProto.proto | 5 +++++ 2 files changed, 13 insertions(+) diff --git a/protos/HeroInfoProto.proto b/protos/HeroInfoProto.proto index 617e29e..d8e5df1 100644 --- a/protos/HeroInfoProto.proto +++ b/protos/HeroInfoProto.proto @@ -744,4 +744,12 @@ message AssistUpDownRequest{ optional int32 id = 1; optional string heroId = 2; optional int32 operate = 3;//1 上阵,2 卸下 +} + +// 图鉴 +message QueryBookImageRequest{ + optional int32 type = 1;//0 全部 +} +message QueryBookImageResponse{ + repeated int32 bookImgIds = 1; } \ No newline at end of file diff --git a/protos/MessageTypeProto.proto b/protos/MessageTypeProto.proto index ed083e6..f73b921 100644 --- a/protos/MessageTypeProto.proto +++ b/protos/MessageTypeProto.proto @@ -1709,6 +1709,11 @@ enum MessageType{ AssistUpDownRequest = 7000003; AssistUpDownResponse = 7000004; AssistInfoIndication = 7000005; + + // 图鉴 + QueryBookImageRequest = 7000006; + QueryBookImageResponse = 7000007; + QueryBookImageIndication = 7000008; }