终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
800 B

  1. using BPA.Helper;
  2. namespace BPASmartClient.FoodStationTest.Model
  3. {
  4. /// <summary>
  5. /// 味魔方当前状态。
  6. /// </summary>
  7. public class DeviceCurrentStatus : NotifyBase
  8. {
  9. public double Weight { get { return _mWeight; } set { _mWeight = value; OnPropertyChanged(); } }
  10. private double _mWeight;
  11. public ushort RunStatus { get { return _mRunStatus; } set { _mRunStatus = value; OnPropertyChanged(); } }
  12. private ushort _mRunStatus;
  13. public int DeviceNum { get { return _mDeviceNum; } set { _mDeviceNum = value; OnPropertyChanged(); } }
  14. private int _mDeviceNum;
  15. public string DeviceName { get { return _mDeviceName; } set { _mDeviceName = value; OnPropertyChanged(); } }
  16. private string _mDeviceName;
  17. }
  18. }