终端一体化运控平台
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.
 
 
 

51 lines
1.8 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Microsoft.Toolkit.Mvvm.ComponentModel;
  7. namespace BPASmartClient.JXJFoodSmallStation.Model
  8. {
  9. public class WindSendDeviceParMode : ObservableObject
  10. {
  11. /// <summary>
  12. /// 原料名称
  13. /// </summary>
  14. public string MaterialName { get { return _mMaterialName; } set { _mMaterialName = value; OnPropertyChanged(); } }
  15. private string _mMaterialName = string.Empty;
  16. /// <summary>
  17. /// 料仓上限重量
  18. /// </summary>
  19. public float UpperLimitWeight { get { return _mUpperLimitWeight; } set { _mUpperLimitWeight = value; OnPropertyChanged(); } }
  20. private float _mUpperLimitWeight;
  21. /// <summary>
  22. /// 料仓下限重量
  23. /// </summary>
  24. public float LowerLimitWeight { get { return _mLowerLimitWeight; } set { _mLowerLimitWeight = value; OnPropertyChanged(); } }
  25. private float _mLowerLimitWeight;
  26. /// <summary>
  27. /// 料仓上限重量偏移
  28. /// </summary>
  29. public float UpperLimitWeightOffset { get { return _mUpperLimitWeightOffset; } set { _mUpperLimitWeightOffset = value; OnPropertyChanged(); } }
  30. private float _mUpperLimitWeightOffset;
  31. /// <summary>
  32. /// 料仓下限重量偏移
  33. /// </summary>
  34. public float LowerLimitWeightOffset { get { return _mLowerLimitWeightOffset; } set { _mLowerLimitWeightOffset = value; OnPropertyChanged(); } }
  35. private float _mLowerLimitWeightOffset;
  36. /// <summary>
  37. /// 是否重复
  38. /// </summary>
  39. [Newtonsoft.Json.JsonIgnore]
  40. public bool IsRedundant { get { return _mIsRedundant; } set { _mIsRedundant = value; OnPropertyChanged(); } }
  41. private bool _mIsRedundant;
  42. }
  43. }