20 lines
454 B
Protocol Buffer
20 lines
454 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package state; //模型的可变的状态数据
|
|
//import "LineNetTrainOffsetDiagram.proto";
|
|
option java_package = "club.joylink.xiannccda.dto.protos";
|
|
option java_outer_classname = "SystemWarnMsgProto";
|
|
|
|
message WarnLineMessage{
|
|
repeated WarnMessage msgs = 1;
|
|
}
|
|
|
|
message WarnMessage {
|
|
int32 lineId = 1;
|
|
bool occRealConned = 2;
|
|
bool occUnrealConned = 3;
|
|
//ats 设备告警计时是否显示
|
|
bool atsWarnShowCounter = 4;
|
|
|
|
}
|