From 0a445e4b0639bfcedcdd914159867f3aa2a814b2 Mon Sep 17 00:00:00 2001 From: dong <58670809@qq.com> Date: Thu, 29 Jun 2023 16:25:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=88=86=E9=9A=94=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/stationLayoutGraphics.proto | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/protos/stationLayoutGraphics.proto b/protos/stationLayoutGraphics.proto index 3e75b15..3a602b5 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -22,6 +22,7 @@ message RtssGraphicStorage { repeated Polygon polygons = 15; repeated TrainWindow trainWindows = 16; repeated AxleCounting axleCountings = 17; + repeated Separator separators = 18; } message Canvas { @@ -233,3 +234,9 @@ message RelatedRef { string id = 2; //关联的设备ID DevicePort devicePort = 3; //关联的设备端口 } + +message Separator { // 分隔符 + CommonInfo common = 1; + string code = 2; + string separatorType = 3; +}