拆分列车信息
This commit is contained in:
parent
f69dbc04a0
commit
a2006168c3
@ -263,99 +263,5 @@ message OccNccFepNetwork{
|
||||
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;
|
||||
|
||||
// 列车状态
|
||||
int32 mode = 16;
|
||||
|
||||
// 车次窗编号
|
||||
int32 nccWindow = 17;
|
||||
|
||||
// 车次窗位置
|
||||
int32 nccWindowOffset = 18;
|
||||
|
||||
// 满载率
|
||||
int32 rate = 19;
|
||||
|
||||
// 所在设备类型
|
||||
int32 devType = 20;
|
||||
|
||||
// 所在设备名称
|
||||
string devName = 21;
|
||||
|
||||
// 阻塞标记
|
||||
int32 blockFlag = 22;
|
||||
|
||||
//是否显示
|
||||
bool show = 23;
|
||||
|
||||
//线路id
|
||||
int32 lineId = 24;
|
||||
|
||||
// 列车标示号,全线唯一
|
||||
string trainIndex = 25;
|
||||
|
||||
// 编组数量
|
||||
int32 rollingStock = 26;
|
||||
|
||||
// 计划偏离时间
|
||||
int32 otpTime = 27;
|
||||
|
||||
// 集中站站号
|
||||
int32 rtuId = 28;
|
||||
|
||||
// 到点
|
||||
int64 arriveTime = 29;
|
||||
|
||||
// 发点
|
||||
int64 departTime = 30;
|
||||
//车次号变化状态
|
||||
bool type = 31;
|
||||
}
|
||||
|
||||
|
||||
|
158
protos/train.proto
Normal file
158
protos/train.proto
Normal file
@ -0,0 +1,158 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package train; //模型的可变的状态数据
|
||||
import "device_status.proto";
|
||||
option java_package = "club.joylink.xiannccda.dto.protos";
|
||||
option java_outer_classname = "TrainProto";
|
||||
|
||||
// 2.7.8 列车状态信息
|
||||
message TrainInfo {
|
||||
//线路id
|
||||
int32 lineId = 1;
|
||||
// 集中站站号
|
||||
int32 rtuId = 2;
|
||||
NccWindow window = 3;
|
||||
// 所在设备类型
|
||||
state.DeviceType devType = 4;
|
||||
// 所在设备名称
|
||||
string devName = 5;
|
||||
// 列车标示号,全线唯一
|
||||
string trainIndex = 6;
|
||||
// 列车车组号
|
||||
string groupId = 7;
|
||||
// 列车表号
|
||||
string trainId = 8;
|
||||
// 列车车次号
|
||||
string globalId = 9;
|
||||
// 目的地ID
|
||||
int32 destinationId = 10;
|
||||
// 编组数量
|
||||
int32 rollingStock = 11;
|
||||
// 司机号
|
||||
string driverId = 12;
|
||||
// 计划偏离时间
|
||||
int32 otpTime = 13;
|
||||
// 列车状态
|
||||
int32 mode = 14;
|
||||
// 到点
|
||||
int64 arriveTime = 15;
|
||||
// 发点
|
||||
int64 departTime = 16;
|
||||
// 速度
|
||||
float speed = 17;
|
||||
//是否显示
|
||||
bool show = 18;
|
||||
//车次号变化状态 true=添加;false = 更新
|
||||
bool type = 19;
|
||||
//运行路径号(若无法提供,缺省值为0)
|
||||
int32 routeId = 20;
|
||||
//满载率
|
||||
int32 rate = 21;
|
||||
}
|
||||
message NccWindow{
|
||||
int32 nccWindow = 1;
|
||||
int32 nccWinOffset = 2;
|
||||
}
|
||||
//列车删除消息
|
||||
message TrainRemove{
|
||||
// 线路号
|
||||
int32 lineId = 1;
|
||||
// 集中站站号
|
||||
|
||||
int32 rtuId = 2;
|
||||
// NCC车次窗编号
|
||||
// 列车在车次窗中的位置
|
||||
NccWindow window = 3;
|
||||
// 列车所在的设备的类型
|
||||
|
||||
state.DeviceType deviceType = 4;
|
||||
// 列车所在的设备的名称
|
||||
|
||||
string devName = 5;
|
||||
// 列车标示号,全线唯一(若无法提供,缺省值为0)
|
||||
int32 trainIndex = 6;
|
||||
// 列车编组号
|
||||
string groupId = 7;
|
||||
}
|
||||
|
||||
//2.7.13 列车阻塞消息
|
||||
message TrainBlock{
|
||||
// 线路号
|
||||
int32 lineId = 1;
|
||||
// 列车编组号
|
||||
string groupId = 2;
|
||||
// 表号
|
||||
string trainId = 3;
|
||||
// 方向
|
||||
// 0:上行
|
||||
// 1:下行
|
||||
// 2:未知
|
||||
int32 direction = 4;
|
||||
// 列车所在区间左边车站的站号
|
||||
|
||||
int32 stationIDInUpSide = 5;
|
||||
// 列车所在区间右边车站的站号
|
||||
|
||||
int32 stationIDInDownSide = 6;
|
||||
// 集中站站号
|
||||
|
||||
int32 rtuId = 7;
|
||||
// 列车所在的设备的类型
|
||||
|
||||
state.DeviceType deviceType = 8;
|
||||
// 列车所在的设备的名称
|
||||
|
||||
string DevName = 9;
|
||||
// 列车阻塞标记
|
||||
// 1:列车阻塞
|
||||
// 0:列车没有阻塞
|
||||
|
||||
int32 blockFlag = 10;
|
||||
|
||||
}
|
||||
|
||||
//列车报点消息
|
||||
message TrainRecord{
|
||||
/** 线路号(2) */
|
||||
int32 lineId = 1;
|
||||
/** 表号(9) */
|
||||
string trainId = 2;
|
||||
/** 车次号(12) */
|
||||
string globalId = 3;
|
||||
/** 局部序列号(4) */
|
||||
int32 localSubId = 4;
|
||||
/** 车组号(9) */
|
||||
string groupId = 5;
|
||||
/** 目的地(4) */
|
||||
int32 destinationId = 6;
|
||||
/**
|
||||
* 列车类型(2) 1:计划车<br>
|
||||
* 2:头码车<br>
|
||||
* 3:M0车<br>
|
||||
* 4:MM车<br>
|
||||
*/
|
||||
int32 trainType = 7;
|
||||
/**
|
||||
* 运行方向(1) 1:下行 <br>
|
||||
* 2:上行<br>
|
||||
* 0:无方向<br>
|
||||
*/
|
||||
int32 dir = 8;
|
||||
/** 站号(2) */
|
||||
int32 stationId = 9;
|
||||
/** 站台编号(2) */
|
||||
int32 sideId = 10;
|
||||
/** 轨道名称(小区段名称)(20) */
|
||||
string trackName = 11;
|
||||
/**
|
||||
* 到发点类型(2)<br>
|
||||
* 0x01H:到达<br>
|
||||
* 0x02H:出发<br>
|
||||
* true-到达,false-出发
|
||||
*/
|
||||
bool recordType = 12;
|
||||
/** 到发时间(7) */
|
||||
int64 recordTime = 13;
|
||||
|
||||
}
|
||||
|
@ -2,6 +2,7 @@ syntax = "proto3";
|
||||
|
||||
package state; //模型的可变的状态数据
|
||||
import "device_status.proto";
|
||||
import "train.proto";
|
||||
import "LineNetTrainOffsetDiagram.proto";
|
||||
option java_package = "club.joylink.xiannccda.dto.protos";
|
||||
option java_outer_classname = "WsMessageProto";
|
||||
@ -34,7 +35,7 @@ message WsLineMessage {
|
||||
//信息源网络状态消息
|
||||
repeated state.OccNccFepNetwork netWork = 13;
|
||||
//列车信息
|
||||
repeated state.Train train = 14;
|
||||
repeated train.TrainInfo train = 14;
|
||||
}
|
||||
|
||||
// 线网信息
|
||||
@ -44,5 +45,5 @@ message WsLineNetMessage {
|
||||
repeated diagram.LineNetTrainOffsetDiagram diagram = 1;
|
||||
|
||||
//列车信息
|
||||
repeated state.Train train = 2;
|
||||
repeated train.TrainInfo train = 2;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user