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

36 lines
1.1 KiB

  1. using BPA.Helper;
  2. using System.Collections.ObjectModel;
  3. namespace BPASmartClient.FoodStationTest.Model
  4. {
  5. /// <summary>
  6. /// 远程配方数据。
  7. /// </summary>
  8. public class RemoteRecipeData : NotifyBase
  9. {
  10. /// <summary>
  11. /// 配方名称
  12. /// </summary>
  13. public string RecipeName { get { return _mRecipeName; } set { _mRecipeName = value; OnPropertyChanged(); } }
  14. private string _mRecipeName;
  15. /// <summary>
  16. /// 配方ID
  17. /// </summary>
  18. public string RecipeCode { get { return _mRecipeCode; } set { _mRecipeCode = value; OnPropertyChanged(); } }
  19. private string _mRecipeCode;
  20. /// <summary>
  21. /// 托盘编号
  22. /// </summary>
  23. public int TrayCode { get { return _mTrayCode; } set { _mTrayCode = value; OnPropertyChanged(); } }
  24. private int _mTrayCode;
  25. /// <summary>
  26. /// 原料数据
  27. /// </summary>
  28. public ObservableCollection<RemoteRecipeRawMaterial> RawMaterial { get; set; } = new ObservableCollection<RemoteRecipeRawMaterial>();
  29. }
  30. }