using MonitoringTechnology.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MonitoringTechnology.Models { /// /// 系统告警表 /// public class AlarmItemModel : NotifyBase { /// /// 序号 /// public string num { get; set; } public string F_Num { get { return num; } set { num = value; this.DoNotify(); } } /// /// 序号--未存数据库,仅页面展示使用 /// public int _SerialNo; public int F_SerialNo { get { return _SerialNo; } set { _SerialNo = value; this.DoNotify(); } } /// /// 告警信息 /// public string message { get; set; } public string F_Message { get { return message; } set { message = value; this.DoNotify(); } } /// /// 告警时间 /// public DateTime time { get; set; } public DateTime F_Time { get { return time; } set { time = value; this.DoNotify(); } } /// /// 告警时长 /// public int len { get; set; } public int F_Len { get { return len; } set { len = value;this.DoNotify(); } } /// /// 创建日期 /// public DateTime _createTime; public DateTime F_CreateDate { get { return _createTime; } set { _createTime = value; this.DoNotify(); } } } }