SorterRecipePlaceModeTransfer1To1.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Aitex.Sorter.Common
  7. {
  8. public enum SorterRecipePlaceModeTransfer1To1
  9. {
  10. [Description("From Bottom")]
  11. FromBottom,
  12. [Description("From Top")]
  13. FromTop,
  14. [Description("Same Slot")]
  15. SameSlot,
  16. [Description("Odd Slot From Bottom")]
  17. OddFromBotton,
  18. [Description("Odd Slot From Top")]
  19. OddFromTop,
  20. [Description("Even Slot From Bottom")]
  21. EvenFromBotton,
  22. [Description("Even Slot From Top")]
  23. EvenFromTop,
  24. [Description("Identify Slot by laser mark")]
  25. IdentifySlotByLaserMark,
  26. [Description("To Opposite Postion")]
  27. ToOppositePosition,
  28. [Description("To Fixed Slot")]
  29. ToFixedSlot,
  30. }
  31. public enum SorterPickMode
  32. {
  33. [Description("From Bottom")]
  34. FromBottom,
  35. [Description("From Top")]
  36. FromTop,
  37. }
  38. }