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

50 lines
2.0 KiB

  1. using BPA.Helper;
  2. namespace BPASmartClient.FoodStationTest.Model
  3. {
  4. public class RemoteRecipeRawMaterial : NotifyBase
  5. {
  6. public int DeviceIp { get { return _mIp; } set { _mIp = value; } }
  7. private int _mIp;
  8. public string RawMaterialName { get { return _mRawMaterialName; } set { _mRawMaterialName = value; OnPropertyChanged(); } }
  9. private string _mRawMaterialName;
  10. /// <summary>
  11. /// 原料对应的桶号
  12. /// </summary>
  13. public short RawMaterialBarrelNum { get { return _mRawMaterialBarrelNum; } set { _mRawMaterialBarrelNum = value; OnPropertyChanged(); } }
  14. private short _mRawMaterialBarrelNum;
  15. public string RawMaterialType { get { return _mRawMaterialType; } set { _mRawMaterialType = value; OnPropertyChanged(); } }
  16. private string _mRawMaterialType;
  17. /// <summary>
  18. /// 需要原料重量
  19. /// </summary>
  20. public float RawMaterialWeight { get { return _mRawMaterialWeight; } set { _mRawMaterialWeight = value; OnPropertyChanged(); } }
  21. private float _mRawMaterialWeight;
  22. /// <summary>
  23. /// 实际的下料中重量
  24. /// </summary>
  25. public float Laying_Off_Weight { get { return _mLaying_Off_Weight; } set { _mLaying_Off_Weight = value; } }
  26. private float _mLaying_Off_Weight;
  27. /// <summary>
  28. /// 料仓剩余重量
  29. /// </summary>
  30. public float StockBinRemainingWeight { get { return _mStockBinRemainingWeight; } set { _mStockBinRemainingWeight = value; } }
  31. private float _mStockBinRemainingWeight;
  32. /// <summary>
  33. /// 原料对应料仓的位置
  34. /// </summary>
  35. public int RawMaterialLocation { get { return _mRawMaterialLocation; } set { _mRawMaterialLocation = value; OnPropertyChanged(); } }
  36. private int _mRawMaterialLocation;
  37. public bool IsDosingComple { get { return _mIsDosingComple; } set { _mIsDosingComple = value; OnPropertyChanged(); } }
  38. private bool _mIsDosingComple;
  39. }
  40. }