You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
#include <iostream>
|
|
class AlarmInfo
|
|
{
|
|
public:
|
|
AlarmInfo();
|
|
~AlarmInfo();
|
|
|
|
public:
|
|
std::string alarm_start; //报警发生时间
|
|
std::string alarm_handle; //报警处理时间
|
|
std::string alarm_msg; //报警信息
|
|
int alarm_code; //报警代码
|
|
};
|