From 25546a519881da85152cc132a83aca8ecc0087dd Mon Sep 17 00:00:00 2001 From: dong <58670809@qq.com> Date: Tue, 11 Jul 2023 16:40:02 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=BB=E8=BE=91=E5=8C=BA=E6=AE=B5=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/stationLayoutGraphics.proto | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/protos/stationLayoutGraphics.proto b/protos/stationLayoutGraphics.proto index c8f346e..e740936 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -21,7 +21,7 @@ message RtssGraphicStorage { repeated Separator separators = 14; repeated SectionLink sectionLinks = 15; repeated AxleCountingSection axleCountingSections = 16; - repeated AxleCountingSection logicSections = 17; + repeated LogicSection logicSections = 17; } message Canvas { @@ -235,3 +235,11 @@ message AxleCountingSection { // 计轴区段 repeated TurnoutPosRef turnoutPos=6; //关联道岔的正反位 int32 indexNumber=7; //区段的索引编号 } + +message LogicSection { // 逻辑区段 + CommonInfo common = 1; + string code = 2; + repeated Point points = 3; + string axleSectionId = 4; // 关联的计轴区段Id + int32 indexNumber=5; // 索引编号 +}