This commit is contained in:
fan 2023-11-16 16:54:33 +08:00
commit 496c1108b8

View File

@ -163,6 +163,8 @@ message Station {
int32 index = 7;
string refIbpMapCode = 8; // IBP地图Code
string stationName = 9; //
string stationNameAcronym = 10; //
bool depots = 11; //
}
message TrainWindow {
@ -540,3 +542,19 @@ message SectionCodePoint {
string centralizedStation = 1;
repeated string sectionIds = 2; //id列表
}
//
message Train {
enum TrainModel { //
A = 0;
B = 1;
C = 2;
D = 3;
}
TrainModel trainModel = 1; //
int32 carriageLength = 2; //
int32 totalLength = 3; //
int32 minDiameter = 4; //
int32 maxDiameter = 5; //
string trainSets = 6; //
}