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.

59 lines
1.4 KiB
C#

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Admin.Core.Model
{
///<summary>
///报警记录
///</summary>
[SugarTable("LR_Alarmlog", "cwss_xl")]
public class LR_Alarmlog
{
/// <summary>
/// Desc:主键
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
/// <summary>
/// Desc:设备编码
/// Default:
/// Nullable:True
/// </summary>
public string Equip_Code { get; set; }
/// <summary>
/// Desc:预警编码
/// Default:
/// Nullable:True
/// </summary>
public int? Alarm_ID { get; set; }
/// <summary>
/// Desc:发生时间
/// Default:
/// Nullable:True
/// </summary>
public string Alarm_OccurTime { get; set; }
/// <summary>
/// Desc:清理时间
/// Default:
/// Nullable:True
/// </summary>
public string Alarm_ClearTime { get; set; }
/// <summary>
/// Desc:GUID
/// Default:
/// Nullable:True
/// </summary>
public int? Alarm_Status { get; set; }
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
public string Alarm_GUID { get; set; }
}
}