24 lines
595 B
Protocol Buffer
24 lines
595 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package alert;
|
|
//设备保护警告配置
|
|
option java_package = "club.joylink.xiannccda.dto.protos";
|
|
option java_outer_classname = "GuardConfigProto";
|
|
message GuardConfig{
|
|
//道岔失表
|
|
int32 switchLostTimes = 1;
|
|
//道岔大面积失表
|
|
int32 switchLostMostNums = 2;
|
|
//大面积红灯带
|
|
int32 redLedMostNums = 3;
|
|
//大面积橙灯带
|
|
int32 orangeLedMostNums = 4;
|
|
|
|
//站台门无法打开
|
|
int32 canNotOpenTimes = 5;
|
|
//站台门无法关闭
|
|
int32 canNotCloseTimes = 6;
|
|
//列车制动后导致atp切除的超时时间
|
|
int32 trainAtpCutTimes = 7;
|
|
}
|