Merge branch 'master' of https://git.code.tencent.com/beijing-rtss-test/bj-rtss-message
This commit is contained in:
commit
496c1108b8
@ -163,6 +163,8 @@ message Station {
|
|||||||
int32 index = 7;
|
int32 index = 7;
|
||||||
string refIbpMapCode = 8; // 关联IBP地图Code
|
string refIbpMapCode = 8; // 关联IBP地图Code
|
||||||
string stationName = 9; //车站名
|
string stationName = 9; //车站名
|
||||||
|
string stationNameAcronym = 10; // 车站名缩写
|
||||||
|
bool depots = 11; //是否车辆段
|
||||||
}
|
}
|
||||||
|
|
||||||
message TrainWindow {
|
message TrainWindow {
|
||||||
@ -540,3 +542,19 @@ message SectionCodePoint {
|
|||||||
string centralizedStation = 1;
|
string centralizedStation = 1;
|
||||||
repeated string sectionIds = 2; //物理区段id列表
|
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; // 编组
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user