using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MECF.Framework.Common.CommonData.PlatingCell { public class PlatingCellData : NotifiableItem { #region 内部变量 private bool _isHeadTilt; private bool _isHeadVertical; private double _clamShellDistance; private double _clamShellCylinderPressure; private double _overFlowLevel; private string _overFlowStatus; private bool _clamShellClose; private bool _headTilt; private bool _isDataInitialized; private bool _cCREnable; private bool _rinseEnable; #endregion #region 属性 public bool IsHeadTilt { get { return _isHeadTilt; } set { _isHeadTilt = value; InvokePropertyChanged(nameof(IsHeadTilt)); } } public bool IsHeadVertical { get { return _isHeadVertical; } set { _isHeadVertical = value; InvokePropertyChanged(nameof(IsHeadVertical)); } } public double ClamShellDistance { get { return _clamShellDistance; } set { _clamShellDistance = value; InvokePropertyChanged(nameof(ClamShellDistance)); } } public double ClamShellCylinderPressure { get { return _clamShellCylinderPressure; } set { _clamShellCylinderPressure = value; InvokePropertyChanged(nameof(ClamShellCylinderPressure)); } } public double OverFlowLevel { get { return _overFlowLevel; } set { _overFlowLevel = value; InvokePropertyChanged(nameof(OverFlowLevel)); } } public string OverFlowStatus { get { return _overFlowStatus; } set { _overFlowStatus = value; InvokePropertyChanged(nameof(OverFlowStatus)); } } public bool ClamShellClose { get { return _clamShellClose; } set { _clamShellClose = value; InvokePropertyChanged(nameof(ClamShellClose)); } } public bool HeadTilt { get { return _headTilt; } set { _headTilt = value; InvokePropertyChanged(nameof(HeadTilt)); } } public bool IsDataInitialized { get { return _isDataInitialized; } set { _isDataInitialized = value; InvokePropertyChanged(nameof(IsDataInitialized)); } } public bool CCREnable { get { return _cCREnable; } set { _cCREnable = value; InvokePropertyChanged(nameof(CCREnable)); } } public bool RinseEnable { get { return _rinseEnable; } set { _rinseEnable = value; InvokePropertyChanged(nameof(RinseEnable)); } } #endregion } }