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

25 rivejä
873 B

  1. using Microsoft.Toolkit.Mvvm.ComponentModel;
  2. namespace BPASmartClient.FoodStationTest.Model.RawMaterial
  3. {
  4. public class RawMaterialStockBin : ObservableObject
  5. {
  6. public short RawMaterialCount { get { return _mRawMaterialCount; } set { _mRawMaterialCount = value; OnPropertyChanged(); } }
  7. private short _mRawMaterialCount;
  8. /// <summary>
  9. /// 原料名称
  10. /// </summary>
  11. public string RawMaterialName { get { return _mRawMaterialName; } set { _mRawMaterialName = value; OnPropertyChanged(); } }
  12. private string _mRawMaterialName;
  13. /// <summary>
  14. /// 原料对应料仓的位置
  15. /// </summary>
  16. public int RawMaterialLocation { get { return _mRawMaterialLocation; } set { _mRawMaterialLocation = value; OnPropertyChanged(); } }
  17. private int _mRawMaterialLocation;
  18. }
  19. }