区段增加常规运行方向和是否折返轨

This commit is contained in:
Yuan 2023-12-04 16:19:31 +08:00
parent 8eba9c60ce
commit 117442931a

View File

@ -306,6 +306,12 @@ message Section {
TurnoutPhysical = 2;
}
enum RunningDirection {
A = 0;
B = 1;
C = 2;
}
CommonInfo common = 1;
string code = 2; //
repeated Point points = 3; //
@ -318,6 +324,8 @@ message Section {
bool isCurve = 10; // 线
int32 segmentsCount = 12; // 线
repeated string centralizedStations = 13; // Id列表
RunningDirection normalRunningDirection = 14; //
bool isTurnBackZone = 15; //
}
//