using System;
using SqlSugar;
namespace TeamAAS_VP.Models
{
[SugarTable("AlarmRecord")]
public class AlarmRecord
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// 报警编号
///
public string Code { get; set; }
///
/// 报警信息
///
[SugarColumn(Length = 1000, IsNullable = true)]
public string Message { get; set; }
///
/// 报警来源,例如远程命令来源
///
[SugarColumn(Length = 255, IsNullable = true)]
public string Source { get; set; }
public DateTime Time { get; set; } = DateTime.Now;
}
}