区段数据增加

This commit is contained in:
Yuan 2023-06-27 09:54:05 +08:00
parent f42a98cd93
commit 6fda9b7ad7

View File

@ -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 {