PlatingCellData.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.PlatingCell
  7. {
  8. public class PlatingCellData : NotifiableItem
  9. {
  10. #region 内部变量
  11. private bool _isHeadTilt;
  12. private bool _isHeadVertical;
  13. private double _clamShellDistance;
  14. private double _clamShellCylinderPressure;
  15. private double _overFlowLevel;
  16. private string _overFlowStatus;
  17. private bool _clamShellClose;
  18. private bool _headTilt;
  19. private bool _isDataInitialized;
  20. private bool _cCREnable;
  21. private bool _rinseEnable;
  22. private bool _clammShellClosed;
  23. private bool _clammShellOpened;
  24. #endregion
  25. #region 属性
  26. public bool IsHeadTilt { get { return _isHeadTilt; } set { _isHeadTilt = value; InvokePropertyChanged(nameof(IsHeadTilt)); } }
  27. public bool IsHeadVertical { get { return _isHeadVertical; } set { _isHeadVertical = value; InvokePropertyChanged(nameof(IsHeadVertical)); } }
  28. public double ClamShellDistance { get { return _clamShellDistance; } set { _clamShellDistance = value; InvokePropertyChanged(nameof(ClamShellDistance)); } }
  29. public double ClamShellCylinderPressure { get { return _clamShellCylinderPressure; } set { _clamShellCylinderPressure = value; InvokePropertyChanged(nameof(ClamShellCylinderPressure)); } }
  30. public double OverFlowLevel { get { return _overFlowLevel; } set { _overFlowLevel = value; InvokePropertyChanged(nameof(OverFlowLevel)); } }
  31. public string OverFlowStatus { get { return _overFlowStatus; } set { _overFlowStatus = value; InvokePropertyChanged(nameof(OverFlowStatus)); } }
  32. public bool ClamShellClose { get { return _clamShellClose; } set { _clamShellClose = value; InvokePropertyChanged(nameof(ClamShellClose)); } }
  33. public bool HeadTilt { get { return _headTilt; } set { _headTilt = value; InvokePropertyChanged(nameof(HeadTilt)); } }
  34. public bool IsDataInitialized { get { return _isDataInitialized; } set { _isDataInitialized = value; InvokePropertyChanged(nameof(IsDataInitialized)); } }
  35. public bool CCREnable { get { return _cCREnable; } set { _cCREnable = value; InvokePropertyChanged(nameof(CCREnable)); } }
  36. public bool ClamShellClosed { get { return _clammShellClosed; } set { _clammShellClosed = value; InvokePropertyChanged(nameof(ClamShellClosed)); } }
  37. public bool ClamShellOpened { get { return _clammShellOpened; } set { _clammShellOpened = value; InvokePropertyChanged(nameof(ClamShellOpened)); } }
  38. #endregion
  39. }
  40. }