This commit is contained in:
xzb 2023-07-07 17:20:44 +08:00
commit 2010b69ee7

View File

@ -19,6 +19,8 @@ message RtssGraphicStorage {
repeated TrainWindow trainWindows = 12;
repeated AxleCounting axleCountings = 13;
repeated Separator separators = 14;
repeated SectionLink sectionLinks = 15;
repeated AxleCountingSection axleCountingSections = 16;
}
message Canvas {
@ -208,3 +210,18 @@ message Separator { // 分隔符
string code = 2;
string separatorType = 3;
}
message SectionLink {
CommonInfo common = 1;
string code = 2;
repeated Point points = 3;
string refDevice = 4;
}
message AxleCountingSection { //
CommonInfo common = 1;
string code = 2;
repeated Point points = 3;
RelatedRef paRef = 4; // A端关联的设备
RelatedRef pbRef = 5; // B端关联的设备
}