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

37 lines
1.0 KiB

  1. using BPASmartClient.JXJFoodBigStation.Model.Siemens;
  2. using System;
  3. using System.Collections.Concurrent;
  4. using System.Collections.Generic;
  5. using System.Collections.ObjectModel;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace BPASmartClient.JXJFoodBigStation.Model
  10. {
  11. public class GVL_BigStation
  12. {
  13. /// <summary>
  14. /// 往输送带下发配方完成
  15. /// </summary>
  16. public bool IssueRecipeFinish { get; set; } = false;
  17. /// <summary>
  18. /// 当前料仓的位置
  19. /// </summary>
  20. public int StockInIsWork { get; set; } = 0;
  21. /// <summary>
  22. /// 单个配方执行完成标志
  23. /// </summary>
  24. public bool RecipeFinish { get; set; } = false;
  25. /// <summary>
  26. /// 记录AGV进站送货的指令顺序
  27. /// </summary>
  28. public int AgvDeliveryPosition { get; set; }
  29. /// <summary>
  30. /// 记录AGV进站取货的指令顺序
  31. /// </summary>
  32. public int AgvPickUpPosition { get; set; }
  33. }
  34. }