【列车状态信息】
This commit is contained in:
parent
de6b01d131
commit
524a7e4f0a
@ -248,3 +248,75 @@ message OccNccFepNetwork{
|
|||||||
bool active = 2;
|
bool active = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 2.7.8 列车状态信息
|
||||||
|
message Train {
|
||||||
|
// 基础信息
|
||||||
|
// 列车表号
|
||||||
|
string trainId = 1;
|
||||||
|
|
||||||
|
// 列车车次号
|
||||||
|
string globalId = 2;
|
||||||
|
|
||||||
|
// 列车车组号
|
||||||
|
string groupId = 3;
|
||||||
|
|
||||||
|
// 局部序列号
|
||||||
|
int32 localSubId = 4;
|
||||||
|
|
||||||
|
// 列车类型
|
||||||
|
int32 trainType = 5;
|
||||||
|
|
||||||
|
// 速度
|
||||||
|
float speed = 6;
|
||||||
|
|
||||||
|
// 信息消息
|
||||||
|
// 运行方向
|
||||||
|
int32 direction = 7;
|
||||||
|
|
||||||
|
// 目的地ID
|
||||||
|
int32 destinationId = 8;
|
||||||
|
|
||||||
|
// 行驶站号
|
||||||
|
int32 stationId = 9;
|
||||||
|
|
||||||
|
// 站台号
|
||||||
|
int32 sideId = 10;
|
||||||
|
|
||||||
|
// 轨道名称
|
||||||
|
string trackName = 11;
|
||||||
|
|
||||||
|
// 到发点类型
|
||||||
|
bool recordType = 12;
|
||||||
|
|
||||||
|
// 到发时间
|
||||||
|
int64 recordTime = 13;
|
||||||
|
|
||||||
|
// 司机号
|
||||||
|
string driverId = 14;
|
||||||
|
|
||||||
|
// 运行路径号
|
||||||
|
int32 routeId = 15;
|
||||||
|
|
||||||
|
// 列车状态
|
||||||
|
TrainMode mode = 16;
|
||||||
|
|
||||||
|
// 车次窗编号
|
||||||
|
int32 nccWindow = 17;
|
||||||
|
|
||||||
|
// 车次窗位置
|
||||||
|
int32 nccWindowOffset = 18;
|
||||||
|
|
||||||
|
// 满载率
|
||||||
|
int32 rate = 19;
|
||||||
|
|
||||||
|
// 所在设备类型
|
||||||
|
int32 devType = 20;
|
||||||
|
|
||||||
|
// 所在设备名称
|
||||||
|
string devName = 21;
|
||||||
|
|
||||||
|
// 阻塞标记
|
||||||
|
int32 blockFlag = 22;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -29,10 +29,12 @@ message WsLineMessage {
|
|||||||
repeated state.WorkArea workArea = 10;
|
repeated state.WorkArea workArea = 10;
|
||||||
//区域自动驾驶
|
//区域自动驾驶
|
||||||
repeated state.Gama gama = 11;
|
repeated state.Gama gama = 11;
|
||||||
// 列车模式
|
//列车模式
|
||||||
repeated state.TrainMode trainMode = 12;
|
repeated state.TrainMode trainMode = 12;
|
||||||
// 信息源网络状态消息
|
//信息源网络状态消息
|
||||||
repeated state.OccNccFepNetwork netWork = 13;
|
repeated state.OccNccFepNetwork netWork = 13;
|
||||||
|
//列车信息
|
||||||
|
repeated state.Train train = 14;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 线网信息
|
// 线网信息
|
||||||
|
Loading…
Reference in New Issue
Block a user