using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MECF.Framework.Common.CommonData.Metal { public class StandardHotMetalDeviceData : NotifiableItem { #region 内部变量 private bool _isDataInitialized; private bool _cellPump; private double _cellFlow; private bool _circulation; private bool _waferHolderClamp; #endregion #region 属性 public bool IsDataInitialized { get { return _isDataInitialized; } set { _isDataInitialized = value; InvokePropertyChanged(nameof(IsDataInitialized)); } } public bool CellPump { get { return _cellPump; } set { _cellPump = value;InvokePropertyChanged(nameof(CellPump)); } } public double CellFlow { get { return _cellFlow; } set { _cellFlow = value;InvokePropertyChanged(nameof(CellFlow)); } } public bool WaferHolderClamp { get { return _waferHolderClamp; } set { _waferHolderClamp = value; InvokePropertyChanged(nameof(WaferHolderClamp)); } } /// /// false-bypass,true-flow /// public bool Circulation { get { return _circulation; } set { _circulation = value; InvokePropertyChanged(nameof(Circulation)); } } #endregion } }