From 2b147a06d065df7743012cf63cfcbfee0ef3dcd4 Mon Sep 17 00:00:00 2001 From: tiger_zhou Date: Wed, 20 Dec 2023 14:19:35 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E4=BF=A1=E6=81=AF=E6=B6=88?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/system_warn_message.proto | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/protos/system_warn_message.proto b/protos/system_warn_message.proto index a668fe5..023135a 100644 --- a/protos/system_warn_message.proto +++ b/protos/system_warn_message.proto @@ -5,7 +5,12 @@ package state; //模型的可变的状态数据 option java_package = "club.joylink.xiannccda.dto.protos"; option java_outer_classname = "SystemWarnMsgProto"; -message WarnMessage { - bool occRealConned = 1; - bool occUnrealConned = 2; +message WarnLineMessage{ + repeated WarnMessage msgs = 1; +} + +message WarnMessage { + int32 lineId = 1; + bool occRealConned = 2; + bool occUnrealConned = 3; }