From 3d486fe86ed2f4f9a1c54f1c9560eda6d4f20dd4 Mon Sep 17 00:00:00 2001 From: joylink_zhaoerwei Date: Tue, 28 Nov 2023 16:13:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A1=AB=E5=8A=A0=E9=9B=86=E4=B8=AD=E5=8C=BA?= =?UTF-8?q?=E5=88=86=E5=89=B2=E7=BA=BF?= 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 5f6aa4e..ad7f07d 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -46,6 +46,7 @@ message RtssGraphicStorage { GenerateAxleCountingConfig generateAxleCountingConfig = 38;//一键生成计轴的配置 repeated DepartureTimer departureTimers = 39; // 发车计时器 repeated AutoReturnBox autoReturnBoxs = 40; // 自动折返按钮箱 + repeated ConcentrationDividingLine concentrationDividingLines = 41; // 集中区分割线 } message Canvas { @@ -122,6 +123,12 @@ message CommonInfo { // repeated Point points = 5; // 点坐标列表 // } +message ConcentrationDividingLine { + CommonInfo common = 1; + string code = 2; // 编号 + repeated Point points = 3; // 点列表 +} + message Platform { CommonInfo common = 1; string code = 2;