using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NEIntelligentControl2.Models.WinForms
{
public class HistoryAlertInfo
{
///
/// 报警Id
///
public long Id { set; get; }
///
/// 设备Id(风机,升压站)
///
public string ObjectId { set; get; }
public long SnapId { set; get; }
///
/// 设备名称
///
public string ObjectName { set; get; }
///
/// 报警时间
///
public DateTime AlertTime { set; get; }
///
/// 报警内容
///
public string AlertText { set; get; }
///
/// 报警级别
///
public string RankName { set; get; }
///
/// 报警类型
///
public string CategoryName { set; get; }
///
/// 故障原因
///
public string FaultCause { set; get; }
///
/// 停机类型
///
public string HaltType { set; get; }
///
/// 故障部位
///
public string FaultCategory { set; get; }
}
}