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

55 lines
2.2 KiB

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