PlatingCellData.cs 2.0 KB

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