1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.CommonData.PowerSupplier
- {
- public class PowerSupplierStepPeriodData : NotifiableItem
- {
- #region 内部变量
- private double _voltage;
- private double _current;
- private ushort _hour;
- private ushort _minute;
- private ushort _second;
- private ushort _microsecond;
- #endregion
- #region 属性
- public double Voltage { get { return _voltage; } set { _voltage = value; InvokePropertyChanged(nameof(Voltage)); } }
- public double Current { get { return _current; } set { _current = value; InvokePropertyChanged(nameof(Current)); } }
- public ushort Hour { get { return _hour; } set { _hour = value; InvokePropertyChanged(nameof(Hour)); } }
- public ushort Minute { get { return _minute; } set { _minute = value; InvokePropertyChanged(nameof(Minute)); } }
- public ushort Second { get { return _second;} set { _second = value; InvokePropertyChanged(nameof(Second)); } }
- public ushort Microsecond { get { return _microsecond;} set { _microsecond = value; InvokePropertyChanged(nameof(Microsecond)); } }
- #endregion
- }
- }
|