修改报警信息内容(proto文件同步修改)

This commit is contained in:
joylink_zhangsai 2023-07-24 16:19:49 +08:00
parent edc9973662
commit e9ebd34921

View File

@ -16,11 +16,34 @@ message NccAlertInfoMessage {
string alert_time = 3;
string info = 4;
int32 alert_tip_id = 4;
int32 alert_tip_id = 5;
int32 line_id = 5;
bool mock = 6;
string alert_object = 6;
AlertType alert_type = 7;
string locator_device_id = 8;
bool mock = 9;
}
enum AlertType {
UNKNOWN = 0;
//
BLUE_DISPLAY = 1;
//2
TRAIN_DELAY_2 = 2;
//10
TRAIN_DELAY_10 = 3;
//
PLATFORM_DOOR_WITHOUT_LOCKED_SIGNAL = 4;
//
PLATFORM_DOOR_CANNOT_OPEN = 5;
//
PLATFORM_DOOR_CANNOT_CLOSE = 6;
}
repeated Message messages = 1;
}