diff --git a/protos/stationLayoutGraphics.proto b/protos/stationLayoutGraphics.proto index 4aef552..956708e 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -52,6 +52,8 @@ message RtssGraphicStorage { repeated OtherLine otherLineList = 42; // 其他线设备列表 repeated IbpBox ibpBoxs = 43; // ibp地图打开按钮 repeated PslBox pslBoxs = 44; // psl地图打开按钮 + repeated CarWashing carWashings = 45; // 洗车机 + repeated GarageDoor garageDoors = 46; // 车库门 } message Canvas { @@ -569,6 +571,16 @@ message CurvatureKiloMarker { string code = 2; repeated KilometerSystem kilometerSystem = 4; //公里标数据 } +/** 车库门 */ +message GarageDoor { + CommonInfo common = 1; + string code = 2; +} +/** 洗车机 */ +message CarWashing { + CommonInfo common = 1; + string code = 2; +} /** 信标 */ message Beacon {