终端一体化运控平台
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 rivejä
2.1 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.JXJFoodBigStation.Model
  8. {
  9. public class RawMaterial :ObservableObject
  10. {
  11. private int _mIp;
  12. public int DeviceIp { get { return _mIp; } set { _mIp = value; OnPropertyChanged(); } }
  13. public int RawMaterialCount { get { return _mRawMaterialCount; } set { _mRawMaterialCount = value; OnPropertyChanged(); } }
  14. private int _mRawMaterialCount;
  15. /// <summary>
  16. /// 原料中文名
  17. /// </summary>
  18. public string RawMaterialChineseName { get { return _mRawMaterialChineseName; } set { _mRawMaterialChineseName = value; OnPropertyChanged(); } }
  19. private string _mRawMaterialChineseName;
  20. /// <summary>
  21. /// 原料名称
  22. /// </summary>
  23. public string RawMaterialName { get { return _mRawMaterialName; } set { _mRawMaterialName = value; OnPropertyChanged(); } }
  24. private string _mRawMaterialName;
  25. /// <summary>
  26. /// 原料对应的桶号
  27. /// </summary>
  28. public int RawMaterialBarrelNum { get { return _mRawMaterialBarrelNum; } set { _mRawMaterialBarrelNum = value;OnPropertyChanged(); } }
  29. private int _mRawMaterialBarrelNum;
  30. /// <summary>
  31. /// 需要原料重量
  32. /// </summary>
  33. public float RawMaterialWeight { get { return _mRawMaterialWeight; } set { _mRawMaterialWeight = value; OnPropertyChanged(); } }
  34. private float _mRawMaterialWeight;
  35. /// <summary>
  36. /// 实际的下料中重量
  37. /// </summary>
  38. public float Laying_Off_Weight { get { return _mLaying_Off_Weight; } set { _mLaying_Off_Weight = value; OnPropertyChanged(); } }
  39. private float _mLaying_Off_Weight;
  40. /// <summary>
  41. /// 原料对应料仓的位置
  42. /// </summary>
  43. public int RawMaterialLocation { get { return _mRawMaterialLocation; } set { _mRawMaterialLocation = value; OnPropertyChanged(); } }
  44. private int _mRawMaterialLocation;
  45. }
  46. }