Merge branch 'master' of https://git.code.tencent.com/beijing-rtss-test/bj-rtss-message
This commit is contained in:
commit
9c1d8889e2
@ -21,7 +21,7 @@ enum SectionType{
|
||||
//相邻端点定义的link的状态
|
||||
message LinkState{
|
||||
//link索引
|
||||
string id = 1;
|
||||
uint32 id = 1;
|
||||
//link上的列车id列表
|
||||
repeated string trainId = 2;
|
||||
}
|
||||
@ -29,7 +29,7 @@ message LinkState{
|
||||
//区段状态
|
||||
message SectionState{
|
||||
//区段索引
|
||||
string id = 1;
|
||||
uint32 id = 1;
|
||||
//区段占用
|
||||
//true-占用;false-出清
|
||||
bool occupied = 3;
|
||||
@ -40,7 +40,7 @@ message SectionState{
|
||||
//道岔状态
|
||||
message SwitchState{
|
||||
//道岔索引
|
||||
string id = 1;
|
||||
uint32 id = 1;
|
||||
//道岔处于定位(表示)
|
||||
bool normal = 2;
|
||||
//道岔处于反位(表示)
|
||||
@ -77,7 +77,7 @@ message SwitchState{
|
||||
//信号机状态
|
||||
message SignalState{
|
||||
//信号机索引
|
||||
string id = 1;
|
||||
uint32 id = 1;
|
||||
//信号机的灯列表
|
||||
Signal.Aspect aspect = 2;
|
||||
}
|
||||
@ -107,7 +107,7 @@ message Signal {
|
||||
//站台状态
|
||||
message PlatformState{
|
||||
//站台索引
|
||||
string id = 1;
|
||||
uint32 id = 1;
|
||||
// EMP继电器状态
|
||||
bool empj = 2;
|
||||
// SPKS继电器状态
|
||||
@ -118,7 +118,7 @@ message PlatformState{
|
||||
//车站状态
|
||||
message StationState{
|
||||
//车站索引
|
||||
string id = 1;
|
||||
uint32 id = 1;
|
||||
}
|
||||
//列车状态
|
||||
message TrainState{
|
||||
@ -133,7 +133,7 @@ message TrainState{
|
||||
//列车是否显示
|
||||
bool show = 5;
|
||||
// 列车车头所在设备ID
|
||||
string headDeviceId = 6;
|
||||
uint32 headDeviceId = 6;
|
||||
// 列车车头所在设备偏移量
|
||||
int64 headOffset = 7;
|
||||
// 设备端口
|
||||
@ -264,7 +264,7 @@ message TrainVobcState {
|
||||
// 继电器状态
|
||||
message ReplyState {
|
||||
// 继电器索引
|
||||
string id = 1;
|
||||
uint32 id = 1;
|
||||
// 继电器吸合状态
|
||||
bool xh = 2;
|
||||
// 继电器编号
|
||||
@ -273,26 +273,26 @@ message ReplyState {
|
||||
|
||||
// 按钮状态
|
||||
message ButtonState {
|
||||
string id = 1;
|
||||
uint32 id = 1;
|
||||
bool down = 2;
|
||||
bool active = 3; // 带灯的按钮
|
||||
}
|
||||
|
||||
// 警铃状态
|
||||
message AlarmState {
|
||||
string id = 1;
|
||||
uint32 id = 1;
|
||||
bool active = 2;
|
||||
}
|
||||
|
||||
// 灯状态
|
||||
message LightState {
|
||||
string id = 1;
|
||||
uint32 id = 1;
|
||||
bool active = 2;
|
||||
}
|
||||
|
||||
// 屏蔽门状态
|
||||
message PsdState {
|
||||
string id = 1; //屏蔽门的id
|
||||
uint32 id = 1; //屏蔽门的id
|
||||
repeated AsdState asdStates = 2; //滑动门状态
|
||||
bool mgj = 3; //屏蔽门整体的关闭(继电器)状态
|
||||
}
|
||||
@ -307,7 +307,7 @@ message AsdState {
|
||||
|
||||
// 钥匙状态
|
||||
message KeyState {
|
||||
string id = 1;
|
||||
uint32 id = 1;
|
||||
int32 gear = 2;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user