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

33 lines
926 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.Model.大炒
  7. {
  8. public class RobotAction_Pot
  9. {
  10. public int Pot { get; set; }
  11. public RobotActionModel robotActionModel { get; set; }
  12. }
  13. public enum RobotActionModel
  14. {
  15. 无任务,
  16. 取1号炒锅荤菜盆倒1号炒锅,
  17. 取1号炒锅素菜盆1倒1号炒锅,
  18. 取1号炒锅素菜盆2倒1号炒锅,
  19. 取1号炒锅调料盆倒入1号炒锅,
  20. 取1号炒锅辅料盆1倒入1号炒锅,
  21. 取1号空盆出餐,
  22. 取2号炒锅荤菜盆1倒2号炒锅 = 20,
  23. 取2号炒锅素菜盆1倒2号炒锅 = 21,
  24. 取2号炒锅素菜盆2倒2号炒锅 =22,
  25. 取2号炒锅调料盆倒入2号炒锅 =23,
  26. 取2号炒锅辅料盆1倒入2号炒锅 =24,
  27. 取2号空盆出餐 =25,
  28. }
  29. }