using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
///
///
public class AddMonitorAlarmConfigureInput
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 测点标识
///
public long? MonitorPointID { get; set; }
///
/// 信号标识
///
public long? SignalID { get; set; }
///
/// 信号类型
///
public string SignalType { get; set; }
///
/// 报警名称
///
public string AlarmName { get; set; }
///
/// 报警类型
///
public string AlarmType { get; set; }
///
/// 报警等级
///
public int AlarmLevel { get; set; }
///
/// 阀值
///
public string ThresholdValue { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}