xian-ncc-da-message/protos/system_warn_message.proto

20 lines
454 B
Protocol Buffer
Raw Permalink Normal View History

2023-12-20 13:50:33 +08:00
syntax = "proto3";
package state; //模型的可变的状态数据
//import "LineNetTrainOffsetDiagram.proto";
option java_package = "club.joylink.xiannccda.dto.protos";
option java_outer_classname = "SystemWarnMsgProto";
2023-12-20 14:19:35 +08:00
message WarnLineMessage{
repeated WarnMessage msgs = 1;
}
2023-12-20 13:50:33 +08:00
message WarnMessage {
2023-12-20 14:19:35 +08:00
int32 lineId = 1;
bool occRealConned = 2;
bool occUnrealConned = 3;
2024-11-18 11:10:54 +08:00
//ats 设备告警计时是否显示
bool atsWarnShowCounter = 4;
2023-12-20 13:50:33 +08:00
}