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; // 是否翻转(前端显示) -}