123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 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;
- #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)); } }
- #endregion
- }
- }
|