From 3dddb31503eddd794b391a2e17c4f0e11467c2f6 Mon Sep 17 00:00:00 2001 From: joylink_zhaoerwei Date: Wed, 8 Nov 2023 16:13:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=B1=8F=E8=94=BD=E9=97=A8?= =?UTF-8?q?=E9=85=8D=E7=BD=AE--=E5=AD=90=E9=97=A8=E5=92=8C=E7=BC=96?= =?UTF-8?q?=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/stationLayoutGraphics.proto | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/protos/stationLayoutGraphics.proto b/protos/stationLayoutGraphics.proto index 43aea38..99204a2 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -41,6 +41,7 @@ message RtssGraphicStorage { repeated ScreenDoor screenDoors = 33; repeated StationRelateDevice stationRelateDeviceList = 34; // 关联设备列表 repeated SectionCodePoint sectionCodePointList = 35; // 物理区段码位表 + ScreenDoorConfig screenDoorConfig = 36;//屏蔽门的配置--子屏蔽门的数量和编组列表 } message Canvas { @@ -133,9 +134,14 @@ message Platform { message ScreenDoor { CommonInfo common = 1; string code = 2; - int32 sonDoorAmount = 3; //子屏蔽门的数量 + //int32 sonDoorAmount = 3; //子屏蔽门的数量 string refPlatformId = 4; //关联的站台 - repeated ScreenDoorGroup screenDoorGroupList = 5;//编组列表 + //repeated ScreenDoorGroup screenDoorGroupList = 5;//编组列表 +} + +message ScreenDoorConfig { + int32 sonDoorAmount = 1; //子屏蔽门的数量 + repeated ScreenDoorGroup screenDoorGroupList = 2;//编组列表 } message ScreenDoorGroup {