using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FLY.Simulation.Blowing { public interface IPlcLink: INotifyPropertyChanged { string PlcAddr { get; set; } /// /// 当前电流 有没? /// bool HasElectricCurrent { get; set; } /// /// 风机是否启动? /// bool HasFan { get; set; } UInt16 HeatUpdate { get; set; } bool Save(); } }