diff --git a/protos/stationLayoutGraphics.proto b/protos/stationLayoutGraphics.proto index 65ba274..1273f2b 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -19,6 +19,7 @@ message RtssGraphicStorage { repeated TrainWindow trainWindows = 12; repeated AxleCounting axleCountings = 13; repeated Separator separators = 14; + repeated SectionLink sectionLinks = 15; } message Canvas { @@ -208,3 +209,10 @@ message Separator { // 分隔符 string code = 2; string separatorType = 3; } + +message SectionLink { + CommonInfo common = 1; + string code = 2; + repeated Point points = 3; + string refDevice = 4; +}