using Misc;
using System.ComponentModel;
namespace FLY.DownBlowing.Common
{
public class IbcData : INotifyPropertyChanged
{
public IbcData()
{
}
#region 辅助代码生成
///
/// 流量泵开启
///
[Description("流量泵开启")]
public bool IsFlowPumpOn { get; set; }
///
/// 流量设置(L)(XXX.X)
///
[Description("流量设置(L)(XXX.X)")]
public float FlowValueSet { get; set; }
///
/// 流量泵(XXX.X)
///
[Description("流量泵(XXX.X)")]
public float FlowPumpValue { get; set; }
///
/// 流量计(XXX.X)
///
[Description("流量计(XXX.X)")]
public float FlowValue { get; set; }
///
/// 补气阀开关_读
///
[Description("补气阀开关_读")]
public bool IsGulpValveOn { get; set; }
///
/// 补气阀开关_写(按1)
///
[Description("补气阀开关_写(按1)")]
public bool IsGulpValveOnSet { get; set; }
///
/// 补气阀状态
///
[Description("补气阀状态")]
public bool IsGulpValveOn2 { get; set; }
///
/// 水环升(按1)
///
[Description("水环升(按1)")]
public bool WatchRingUpAct { get; set; }
///
/// 水环降(按1)
///
[Description("水环降(按1)")]
public bool WatchRingDownAct { get; set; }
///
/// 外冷风机运行指示
///
[Description("外冷风机运行指示")]
public bool IsExAirOn { get; set; }
///
/// 外冷风机开关(按1)
///
[Description("外冷风机开关(按1)")]
public bool IsExAirOnSet { get; set; }
///
/// 外冷风机运行频率(Hz)(XX.X)
///
[Description("外冷风机运行频率(Hz)(XX.X)")]
public float ExAirFreq { get; set; }
///
/// 外冷风机设定频率(Hz)(XX.X)
///
[Description("外冷风机设定频率(Hz)(XX.X)")]
public float ExAirFreqSet { get; set; }
///
/// 人字板操作开(按1松0)
///
[Description("人字板操作开(按1松0)")]
public bool IsRenZiBanOpen { get; set; }
///
/// 人字板操作合(按1松0)
///
[Description("人字板操作合(按1松0)")]
public bool IsRenZiBanClose { get; set; }
///
/// 侧夹板操作开(按1松0)
///
[Description("侧夹板操作开(按1松0)")]
public bool IsCeJiaBanOpen { get; set; }
///
/// 侧夹板操作合(按1松0)
///
[Description("侧夹板操作合(按1松0)")]
public bool IsCeJiaBanClose { get; set; }
///
/// 加热柜急停开启报警!!!请检查
///
[Description("加热柜急停开启报警!!!请检查")]
[IsError()]
public bool Warning001 { get; set; }
///
/// 水环升降电机报警!!!请检查
///
[Description("水环升降电机报警!!!请检查")]
[IsError()]
public bool Warning002 { get; set; }
///
/// 烘干风机报警!!!请检查
///
[Description("烘干风机报警!!!请检查")]
[IsError()]
public bool Warning003 { get; set; }
///
/// 外风变频通讯报警!!!请检查
///
[Description("外风变频通讯报警!!!请检查")]
[IsError()]
public bool Warning004 { get; set; }
///
/// 外风变频通讯报警!!!请检查
///
[Description("外风变频通讯报警!!!请检查")]
[IsError()]
public bool Warning005 { get; set; }
///
/// 外风变频故障报警!!!请检查
///
[Description("外风变频故障报警!!!请检查")]
[IsError()]
public bool Warning006 { get; set; }
#endregion
public event PropertyChangedEventHandler PropertyChanged;
}
}