增加sectionLink

This commit is contained in:
fan 2023-07-07 16:04:54 +08:00
parent 397dc57c98
commit 833ac57308

View File

@ -19,6 +19,7 @@ message RtssGraphicStorage {
repeated TrainWindow trainWindows = 12; repeated TrainWindow trainWindows = 12;
repeated AxleCounting axleCountings = 13; repeated AxleCounting axleCountings = 13;
repeated Separator separators = 14; repeated Separator separators = 14;
repeated SectionLink sectionLinks = 15;
} }
message Canvas { message Canvas {
@ -208,3 +209,10 @@ message Separator { // 分隔符
string code = 2; string code = 2;
string separatorType = 3; string separatorType = 3;
} }
message SectionLink {
CommonInfo common = 1;
string code = 2;
repeated Point points = 3;
string refDevice = 4;
}