ibms-dome/AlarmMonitorWorkerService/Models/EmergencyDevice.cs
2022-10-14 16:08:54 +08:00

26 lines
749 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace AlarmMonitorWorkerService.Models
{
public class AlarmorionString
{
public string device_number { get; set; }
public string point { get; set; }
public string source_path { get; set; }
public string alarm_timestamp { get; set; }
public string source_name { get; set; }
public string source_msg { get; set; }
}
public class DeviceInfo
{
public string device_number { get; set; }
public string device_disaster_type_text { get; set; }
public string device_name { get; set; }
public string building_name { get; set; }
public string floor_name { get; set; }
}
}