2025-09-18 15:50:18 +08:00
|
|
|
#ifndef ALARMEVENTGLOBAL_H
|
|
|
|
|
#define ALARMEVENTGLOBAL_H
|
|
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
#include <QDateTime>
|
|
|
|
|
|
2025-09-19 17:45:52 +08:00
|
|
|
enum MainDialogMode
|
2025-09-18 15:50:18 +08:00
|
|
|
{
|
|
|
|
|
RealTime = 0,
|
|
|
|
|
Historical
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct EventData
|
|
|
|
|
{
|
|
|
|
|
QString id;
|
|
|
|
|
QString stationName;
|
|
|
|
|
QString bayName;
|
|
|
|
|
QString description;
|
|
|
|
|
bool confirmed;
|
|
|
|
|
QDateTime recivingTime;
|
|
|
|
|
QDateTime SOETime;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|