From 6fda9b7ad78f2ee5291cec1f12e26e3225a1309c Mon Sep 17 00:00:00 2001 From: Yuan Date: Tue, 27 Jun 2023 09:54:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8C=BA=E6=AE=B5=E6=95=B0=E6=8D=AE=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/stationLayoutGraphics.proto | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/protos/stationLayoutGraphics.proto b/protos/stationLayoutGraphics.proto index d5bcdfb..7935b3a 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -167,11 +167,19 @@ message RunLine { } message Section { + enum SectionType { + Physical = 0; + Logic = 1; + TurnoutPhysical = 2; + } + CommonInfo common = 1; string code = 2; repeated Point points = 3; - RelatedRef paRef = 4; // 区段A端关联的设备 - RelatedRef pbRef = 5; // 区段B端关联的设备 + RelatedRef paRef = 4; // 区段A端关联的设备 + RelatedRef pbRef = 5; // 区段B端关联的设备 + SectionType sectionType = 6; // 区段类型 + repeated string children = 7; // 物理区段的下属逻辑区段/道岔物理区段的下属道岔 } message PathLine {