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

42 lines
815 B

  1. using BPA.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.MorkF
  8. {
  9. public class Coordinate
  10. {
  11. public int X { get; set; } = 0;
  12. public int Y { get; set; } = 0;
  13. }
  14. /// <summary>
  15. /// 菜品库操作类
  16. /// </summary>
  17. internal class MaterialOperation
  18. {
  19. public Coordinate coordinate { get; set; } = new Coordinate();
  20. /// <summary>
  21. /// 菜品编号
  22. /// </summary>
  23. public string id;
  24. /// <summary>
  25. /// 菜品位置
  26. /// </summary>
  27. public string loc;
  28. public MaterialInfo materialInfo;
  29. /// <summary>
  30. /// 炒锅编号
  31. /// </summary>
  32. public int fryNum;
  33. }
  34. }