终端一体化运控平台
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
767 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Microsoft.Toolkit.Mvvm.ComponentModel;
  7. namespace BPASmartClient.SmallBatchingSystem
  8. {
  9. /// <summary>
  10. /// 原料仓信息
  11. /// </summary>
  12. public class SiloInfoModel : ObservableObject
  13. {
  14. /// <summary>
  15. /// 原料名称
  16. /// </summary>
  17. public string SiloName { get { return _mSiloName; } set { _mSiloName = value; OnPropertyChanged(); } }
  18. private string _mSiloName;
  19. /// <summary>
  20. /// 料仓原料位置
  21. /// </summary>
  22. public int SiloLoc { get { return _mSiloLoc; } set { _mSiloLoc = value; OnPropertyChanged(); } }
  23. private int _mSiloLoc;
  24. }
  25. }