diff --git a/protos/guardConfig.proto b/protos/guardConfig.proto new file mode 100644 index 0000000..768ea17 --- /dev/null +++ b/protos/guardConfig.proto @@ -0,0 +1,21 @@ +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; +}