PlatingCellData.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. #endregion
  23. #region 属性
  24. public bool IsHeadTilt { get { return _isHeadTilt; } set { _isHeadTilt = value; InvokePropertyChanged(nameof(IsHeadTilt)); } }
  25. public bool IsHeadVertical { get { return _isHeadVertical; } set { _isHeadVertical = value; InvokePropertyChanged(nameof(IsHeadVertical)); } }
  26. public double ClamShellDistance { get { return _clamShellDistance; } set { _clamShellDistance = value; InvokePropertyChanged(nameof(ClamShellDistance)); } }
  27. public double ClamShellCylinderPressure { get { return _clamShellCylinderPressure; } set { _clamShellCylinderPressure = value; InvokePropertyChanged(nameof(ClamShellCylinderPressure)); } }
  28. public double OverFlowLevel { get { return _overFlowLevel; } set { _overFlowLevel = value; InvokePropertyChanged(nameof(OverFlowLevel)); } }
  29. public string OverFlowStatus { get { return _overFlowStatus; } set { _overFlowStatus = value; InvokePropertyChanged(nameof(OverFlowStatus)); } }
  30. public bool ClamShellClose { get { return _clamShellClose; } set { _clamShellClose = value; InvokePropertyChanged(nameof(ClamShellClose)); } }
  31. public bool HeadTilt { get { return _headTilt; } set { _headTilt = value; InvokePropertyChanged(nameof(HeadTilt)); } }
  32. public bool IsDataInitialized { get { return _isDataInitialized; } set { _isDataInitialized = value; InvokePropertyChanged(nameof(IsDataInitialized)); } }
  33. public bool CCREnable { get { return _cCREnable; } set { _cCREnable = value; InvokePropertyChanged(nameof(CCREnable)); } }
  34. public bool RinseEnable { get { return _rinseEnable; } set { _rinseEnable = value; InvokePropertyChanged(nameof(RinseEnable)); } }
  35. #endregion
  36. }
  37. }