Merge branch 'master' of git.code.tencent.com:xian-ncc-da/xian-ncc-da-message
This commit is contained in:
commit
6c78a70743
@ -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;
|
|
||||||
}
|
|
@ -10,17 +10,11 @@ message LineNetTrainOffset{
|
|||||||
string Group_id = 2;
|
string Group_id = 2;
|
||||||
//方向
|
//方向
|
||||||
int32 dir = 3;
|
int32 dir = 3;
|
||||||
// true-到达,false-出发
|
|
||||||
bool initType = 4;
|
|
||||||
//位置
|
|
||||||
int32 offset = 5;
|
|
||||||
//目的地id
|
|
||||||
int32 destinationId = 6;
|
|
||||||
//后方车站
|
|
||||||
int32 backId = 7;
|
|
||||||
//是否删除
|
//是否删除
|
||||||
bool show = 8;
|
bool show = 4;
|
||||||
//完成率
|
//车次窗编号
|
||||||
float rate = 9;
|
int32 windowNo = 5;
|
||||||
|
//车次窗位置
|
||||||
|
int32 windowOffset = 6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -108,6 +108,8 @@ message Switch{
|
|||||||
bool ipSingleSwitchStusLostIndication = 27;
|
bool ipSingleSwitchStusLostIndication = 27;
|
||||||
//设备唯一识别码,一般为设备名称
|
//设备唯一识别码,一般为设备名称
|
||||||
string id = 28;
|
string id = 28;
|
||||||
|
//限速值KM/H
|
||||||
|
int32 speedLimit = 29;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Track{
|
message Track{
|
||||||
@ -124,6 +126,14 @@ message Track{
|
|||||||
bool blocked = 11;
|
bool blocked = 11;
|
||||||
//设备唯一识别码,一般为设备名称
|
//设备唯一识别码,一般为设备名称
|
||||||
string id = 12;
|
string id = 12;
|
||||||
|
|
||||||
|
//限速
|
||||||
|
float speedLimit = 13;
|
||||||
|
//限速类型
|
||||||
|
// 为1时,CBTC限速;
|
||||||
|
// 为2时,联锁限速;
|
||||||
|
// 为4时,同时限速。
|
||||||
|
int32 limitType = 14;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Platform{
|
message Platform{
|
||||||
@ -142,6 +152,10 @@ message Platform{
|
|||||||
bool downTrainSkipstop = 13;
|
bool downTrainSkipstop = 13;
|
||||||
//设备唯一识别码,一般为设备名称
|
//设备唯一识别码,一般为设备名称
|
||||||
string id = 14;
|
string id = 14;
|
||||||
|
//下一区间运行时间
|
||||||
|
int32 nextSectionRunTime = 15;
|
||||||
|
//下一区间运行等级
|
||||||
|
int32 nextSectionRunLevel = 16;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Scada{
|
message Scada{
|
||||||
@ -212,3 +226,16 @@ message TrainMode{
|
|||||||
//设备唯一识别码,一般为设备名称
|
//设备唯一识别码,一般为设备名称
|
||||||
string id = 35;
|
string id = 35;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
//2.7.2 信息源网络状态消息
|
||||||
|
//NCC FEP与OCC FEP 间的网络连接状态
|
||||||
|
message OccNccFepNetwork{
|
||||||
|
//当前线路号
|
||||||
|
string id = 1;
|
||||||
|
//true 代表与当前线路号的信息源(server)连接正常
|
||||||
|
//false 代表断开
|
||||||
|
bool active = 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user