using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class DemoMonitorAlarmRecordDto
{
///
/// 标识
///
public long ID { get; set; }
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 配置标识
///
public long ConfigureID { get; set; }
///
/// 测点标识
///
public long MonitorPointID { get; set; }
///
/// 信号标识
///
public long? SignalID { get; set; }
///
/// 报警类型
///
public string AlarmType { get; set; }
///
/// 报警等级
///
public int AlarmLevel { get; set; }
///
/// 阀值
///
public string ThresholdValue { get; set; }
///
/// 报警时间
///
public DateTime AlarmTime { get; set; }
///
/// 报警内容
///
public string AlarmContent { get; set; }
///
/// 数据时间
///
public DateTime? DataTime { get; set; }
///
/// 数据值
///
public string DataValue { get; set; }
///
/// 处理状态
///
public Model.Alarm.eHandleStatus HandleStatus { get; set; }
}
}