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

30 lines
993 B

  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.RawMaterial
  8. {
  9. public class RawMaterialStockBin : ObservableObject
  10. {
  11. public short RawMaterialCount { get { return _mRawMaterialCount; } set { _mRawMaterialCount = value; OnPropertyChanged(); } }
  12. private short _mRawMaterialCount;
  13. /// <summary>
  14. /// 原料名称
  15. /// </summary>
  16. public string RawMaterialName { get { return _mRawMaterialName; } set { _mRawMaterialName = value; OnPropertyChanged(); } }
  17. private string _mRawMaterialName;
  18. /// <summary>
  19. /// 原料对应料仓的位置
  20. /// </summary>
  21. public int RawMaterialLocation { get { return _mRawMaterialLocation; } set { _mRawMaterialLocation = value; OnPropertyChanged(); } }
  22. private int _mRawMaterialLocation;
  23. }
  24. }