逻辑区段

This commit is contained in:
Yuan 2023-07-17 16:12:51 +08:00
parent 874a6fe4fa
commit 05d0643e31

View File

@ -190,20 +190,28 @@ message RunLine {
string lineId = 10;
}
/** 物理区段 */
message Section {
enum SectionType {
Physical = 0;
Logic = 1;
TurnoutPhysical = 2;
Physical = 0; //
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 axleCountings = 7; //
repeated string axleCountings = 7; // (&&)
repeated string children = 8; // id()
}
/** 逻辑区段 */
message LogicSection {
CommonInfo common = 1;
string code = 2;
repeated Point points = 3;
}
message KilometerPoint {