StandardHotMetalDeviceData.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.Common.CommonData.Metal
  7. {
  8. public class StandardHotMetalDeviceData : NotifiableItem
  9. {
  10. #region 内部变量
  11. private bool _isDataInitialized;
  12. private bool _cellPump;
  13. private double _cellFlow;
  14. private bool _circulation;
  15. private bool _waferHolderClamp;
  16. #endregion
  17. #region 属性
  18. public bool IsDataInitialized { get { return _isDataInitialized; } set { _isDataInitialized = value; InvokePropertyChanged(nameof(IsDataInitialized)); } }
  19. public bool CellPump { get { return _cellPump; } set { _cellPump = value;InvokePropertyChanged(nameof(CellPump)); } }
  20. public double CellFlow { get { return _cellFlow; } set { _cellFlow = value;InvokePropertyChanged(nameof(CellFlow)); } }
  21. public bool WaferHolderClamp { get { return _waferHolderClamp; } set { _waferHolderClamp = value; InvokePropertyChanged(nameof(WaferHolderClamp)); } }
  22. /// <summary>
  23. /// false-bypass,true-flow
  24. /// </summary>
  25. public bool Circulation { get { return _circulation; } set { _circulation = value; InvokePropertyChanged(nameof(Circulation)); } }
  26. #endregion
  27. }
  28. }