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

38 lines
1.0 KiB

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