ibms-MCUT/Mqtt/Models/Alarm.cs
2025-02-12 09:03:23 +08:00

29 lines
982 B
C#

using System;
namespace Mqtt.Models
{
public class alarm_setting
{
public int main_id { get; set; }
public int id { get; set; }
public int deleted { get; set; }
public string device_number { get; set; }
public string device_name_tag { get; set; }
public string points { get; set; }
public string state { get; set; }
public int enable { get; set; }
public int factor { get; set; }
public string alarm_value { get; set; }
public decimal highLimit { get; set; }
public decimal lowLimit { get; set; }
public int highDelay { get; set; }
public int lowDelay { get; set; }
public string notice { get; set; }
public string created_by { get; set; }
public DateTime created_at { get; set; }
public int delay { get; set; }
public DateTime state_updated_at { get; set; }
public DateTime ChkStateTime { get; set; }
}
}