alertInfo.proto使用基础数据类型

This commit is contained in:
joylink_zhangsai 2023-07-14 15:23:54 +08:00
parent f34687558e
commit 6c2387311a

View File

@ -2,8 +2,6 @@ syntax = "proto3";
package state; package state;
import "google/protobuf/timestamp.proto";
import "google/protobuf/wrappers.proto";
// //
//import "LineNetTrainOffsetDiagram.proto"; //import "LineNetTrainOffsetDiagram.proto";
@ -16,11 +14,11 @@ message NccAlertInfoMessage {
string level = 2; string level = 2;
google.protobuf.Timestamp alert_time = 3; string alert_time = 3;
string info = 4; string info = 4;
google.protobuf.Int32Value alert_tip_id = 5; int32 alert_tip_id = 5;
} }
repeated Message messages = 1; repeated Message messages = 1;