29 lines
567 B
Protocol Buffer
29 lines
567 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package state;
|
||
|
|
||
|
import "google/protobuf/timestamp.proto";
|
||
|
import "google/protobuf/wrappers.proto";
|
||
|
|
||
|
//模型的可变的状态数据
|
||
|
//import "LineNetTrainOffsetDiagram.proto";
|
||
|
option java_package = "club.joylink.xiannccda.dto.protos";
|
||
|
option java_outer_classname = "NccAlertInfoMessageProto";
|
||
|
|
||
|
message NccAlertInfoMessage {
|
||
|
message Message {
|
||
|
string id = 1;
|
||
|
|
||
|
string level = 2;
|
||
|
|
||
|
google.protobuf.Timestamp alert_time = 3;
|
||
|
|
||
|
string info = 4;
|
||
|
|
||
|
google.protobuf.Int32Value alert_tip_id = 5;
|
||
|
}
|
||
|
repeated Message messages = 1;
|
||
|
|
||
|
|
||
|
}
|