计轴区段

This commit is contained in:
joylink_zhaoerwei 2023-07-07 17:17:17 +08:00
parent f12288dffe
commit c5f2407855

View File

@ -20,6 +20,7 @@ message RtssGraphicStorage {
repeated AxleCounting axleCountings = 13;
repeated Separator separators = 14;
repeated SectionLink sectionLinks = 15;
repeated AxleCountingSection axleCountingSections = 16;
}
message Canvas {
@ -216,3 +217,11 @@ message SectionLink {
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端关联的设备
}