非实时消息
This commit is contained in:
parent
d092c82311
commit
0bcc9d223a
@ -1,41 +0,0 @@
|
||||
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;
|
||||
}
|
@ -11,16 +11,18 @@ message LineNetTrainOffset{
|
||||
//方向
|
||||
int32 dir = 3;
|
||||
// true-到达,false-出发
|
||||
bool initType = 4;
|
||||
// bool initType = 4;
|
||||
//位置
|
||||
int32 offset = 5;
|
||||
// int32 offset = 5;
|
||||
//目的地id
|
||||
int32 destinationId = 6;
|
||||
// int32 destinationId = 6;
|
||||
//后方车站
|
||||
int32 backId = 7;
|
||||
// int32 backId = 7;
|
||||
//是否删除
|
||||
bool show = 8;
|
||||
//完成率
|
||||
float rate = 9;
|
||||
//车次窗编号
|
||||
int32 windowNo = 9;
|
||||
//车次窗位置
|
||||
int32 windowOffset = 10;
|
||||
}
|
||||
|
||||
|
@ -126,6 +126,14 @@ message Track{
|
||||
bool blocked = 11;
|
||||
//设备唯一识别码,一般为设备名称
|
||||
string id = 12;
|
||||
|
||||
//限速
|
||||
float speedLimit = 13;
|
||||
//限速类型
|
||||
// 为1时,CBTC限速;
|
||||
// 为2时,联锁限速;
|
||||
// 为4时,同时限速。
|
||||
int32 limitType = 14;
|
||||
}
|
||||
|
||||
message Platform{
|
||||
|
Loading…
Reference in New Issue
Block a user