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

46 lines
1.6 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 RemoteRecipeRawMaterial :ObservableObject
  10. {
  11. private int _mIp;
  12. public int DeviceIp { get { return _mIp; } set { _mIp = value; }}
  13. /// <summary>
  14. /// 原料名称
  15. /// </summary>
  16. public string RawMaterialName { get { return _mRawMaterialName; } set { _mRawMaterialName = value; } }
  17. private string _mRawMaterialName;
  18. /// <summary>
  19. /// 原料对应的桶号
  20. /// </summary>
  21. public int RawMaterialBarrelNum { get { return _mRawMaterialBarrelNum; } set { _mRawMaterialBarrelNum = value;OnPropertyChanged(); } }
  22. private int _mRawMaterialBarrelNum;
  23. /// <summary>
  24. /// 需要原料重量
  25. /// </summary>
  26. public double RawMaterialWeight { get { return _mRawMaterialWeight; } set { _mRawMaterialWeight = value; OnPropertyChanged(); } }
  27. private double _mRawMaterialWeight;
  28. /// <summary>
  29. /// 实际的下料中重量
  30. /// </summary>
  31. public float Laying_Off_Weight { get { return _mLaying_Off_Weight; } set { _mLaying_Off_Weight = value; } }
  32. private float _mLaying_Off_Weight;
  33. /// <summary>
  34. /// 原料对应料仓的位置
  35. /// </summary>
  36. public int RawMaterialLocation { get { return _mRawMaterialLocation; } set { _mRawMaterialLocation = value; OnPropertyChanged(); } }
  37. private int _mRawMaterialLocation;
  38. }
  39. }