using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using System.Collections.ObjectModel; namespace FLY.FeedbackRenZiJia.Server { public interface IPLCLink:INotifyPropertyChanged { #region 输出 /// /// 加热通道数 /// UInt16 ChannelCnt { get; set; } /// /// 加热量更新 写 /// UInt16 HeatUpdate { get; set; } /// /// 设置加热量 /// /// void SetHeat(IEnumerable values); #endregion #region 当前值 /// /// 当前电流 有没? /// bool HasElectricity { get; } /// /// 风机是否启动? /// bool HasFan { get; } /// /// 加热量更新 读 /// UInt16 HeatUpdate_R { get; } #endregion #region 状态 int Errno { get; set; } #endregion } }