From 2831ac4bed8c0463f8c06dbf99540d5ad2465da3 Mon Sep 17 00:00:00 2001 From: ZhaoErWei <1107209405@qq.com> Date: Tue, 6 Feb 2024 16:29:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0ipb=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E5=92=8Cpsl=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/stationLayoutGraphics.proto | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/protos/stationLayoutGraphics.proto b/protos/stationLayoutGraphics.proto index 40b7be0..4aef552 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -50,6 +50,8 @@ message RtssGraphicStorage { repeated AutoReturnBox autoReturnBoxs = 40; // 自动折返按钮箱 repeated ConcentrationDividingLine concentrationDividingLines = 41; // 集中区分割线 repeated OtherLine otherLineList = 42; // 其他线设备列表 + repeated IbpBox ibpBoxs = 43; // ibp地图打开按钮 + repeated PslBox pslBoxs = 44; // psl地图打开按钮 } message Canvas { @@ -540,6 +542,20 @@ message GatedBox { uint32 refScreenDoor = 7; // 关联屏蔽门 } +message IbpBox { + CommonInfo common = 1; + string code = 2; + string refIbpMapCode = 3; // 关联Ibp地图Code + uint32 refStationId = 4; // 关联车站id +} + +message PslBox { + CommonInfo common = 1; + string code = 2; + string refPslMapCode = 3; // 关联Psl地图Code + uint32 refPlatformId = 4; // 关联站台id +} + /** 坡度公里标 */ message SlopeKiloMarker { CommonInfo common = 1;