非实时消息
This commit is contained in:
parent
4bc980e0e9
commit
a8afc44290
41
protos/Device.proto
Normal file
41
protos/Device.proto
Normal file
@ -0,0 +1,41 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "club.joylink.xiannccda.dto.protos";
|
||||
option java_outer_classname = "DeviceProto";
|
||||
message Device{
|
||||
int32 lineId = 1;
|
||||
int32 reportId = 2;
|
||||
|
||||
}
|
||||
|
||||
message DeviceDetail{
|
||||
string deviceType = 1;
|
||||
string deviceName = 2;
|
||||
// int32 status = 3;
|
||||
|
||||
}
|
||||
message Track{
|
||||
Device device = 1;
|
||||
DeviceDetail detail = 2;
|
||||
//限速
|
||||
float speedLimit = 3;
|
||||
//限速类型
|
||||
// 为1时,CBTC限速;
|
||||
// 为2时,联锁限速;
|
||||
// 为4时,同时限速。
|
||||
int32 limitType = 4;
|
||||
}
|
||||
|
||||
message Platform{
|
||||
Device device = 1;
|
||||
DeviceDetail detail = 2;
|
||||
//停站时间
|
||||
int32 stopTime = 3;
|
||||
}
|
||||
|
||||
message Switch{
|
||||
Device device = 1;
|
||||
DeviceDetail detail = 2;
|
||||
//限速
|
||||
float speedLimit = 3;
|
||||
}
|
26
protos/LineNetTrainOffset.proto
Normal file
26
protos/LineNetTrainOffset.proto
Normal file
@ -0,0 +1,26 @@
|
||||
syntax = "proto3";
|
||||
|
||||
option java_package = "club.joylink.xiannccda.proto.data";
|
||||
option java_outer_classname = "LineNetTrainOffsetProto";
|
||||
//线网车辆位置
|
||||
message LineNetTrainOffset{
|
||||
//线路id
|
||||
int32 lineId = 1;
|
||||
//车组号
|
||||
string Group_id = 2;
|
||||
//方向
|
||||
int32 dir = 3;
|
||||
// true-到达,false-出发
|
||||
bool initType = 4;
|
||||
//位置
|
||||
int32 offset = 5;
|
||||
//目的地id
|
||||
int32 destinationId = 6;
|
||||
//后方车站
|
||||
int32 backId = 7;
|
||||
//是否删除
|
||||
bool show = 8;
|
||||
//完成率
|
||||
float rate = 9;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user