From 4c3937a7dc9bec9ee38a9db16f27dd91fd02c371 Mon Sep 17 00:00:00 2001 From: joylink_fanyuhong <18706759286@163.com> Date: Thu, 28 Mar 2024 09:11:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=E9=98=B2=E6=B7=B9=E9=97=A8?= =?UTF-8?q?=E8=BD=A6=E5=BA=93=E9=97=A8=E5=8F=96=E6=B6=88=E8=BD=A6=E5=BA=93?= =?UTF-8?q?=E9=97=A8=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/stationLayoutGraphics.proto | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/protos/stationLayoutGraphics.proto b/protos/stationLayoutGraphics.proto index 1b3fdd9..7a033fd 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -54,8 +54,8 @@ message RtssGraphicStorage { repeated PslBox pslBoxs = 44; // psl地图打开按钮 repeated CarWashing carWashings = 45; // 洗车机 repeated GarageDoor garageDoors = 46; // 车库门 - repeated FloodGate floodGates = 47; // 防淹门 - repeated GarageDoorBox garageDoorBoxes = 48; //车库门Psl开启按钮 + //repeated FloodGate floodGates = 47; // 防淹门 + //repeated GarageDoorBox garageDoorBoxes = 48; //车库门Psl开启按钮 } message Canvas { @@ -585,12 +585,13 @@ message CurvatureKiloMarker { string code = 2; repeated KilometerSystem kilometerSystem = 4; //公里标数据 } -/** 车库门 */ +/** 车库门(防淹门) */ message GarageDoor { CommonInfo common = 1; string code = 2; uint32 linkSection = 3; //关联区段 repeated uint32 centralizedStations = 4; // 集中站Id列表; + string refPslMapCode = 3; // 关联的Psl地图的code(名称) } /** 洗车机 */ message CarWashing { @@ -599,13 +600,6 @@ message CarWashing { uint32 linkSection = 3; //关联区段 repeated uint32 centralizedStations = 4; // 集中站Id列表; } -/** 防淹门 */ -message FloodGate { - CommonInfo common = 1; - string code = 2; - uint32 linkSection = 3; //关联区段 - repeated uint32 centralizedStations = 4; // 集中站Id列表; -} /** 信标 */ message Beacon { enum BeaconType { @@ -724,12 +718,3 @@ message OtherLine { repeated string oldids = 2; // 设备id列表 repeated uint32 ids = 3; // 设备id列表 } - -//车库门控制盒 -message GarageDoorBox { - CommonInfo common = 1; - string code = 2; - string refPslMapCode = 3; // 关联的Psl地图的code(名称) - uint32 refGarageDoorId = 4; // 关联的车库门的id - bool flip = 5; // 是否翻转(前端显示) -}