SorterRecipePlaceModeTransfer1To1.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. [Description("Identify Oppsite Slot by laser mark")]
  31. IdentifyOppsiteSlotByLaserMark,
  32. }
  33. public enum SorterPickMode
  34. {
  35. [Description("From Bottom")]
  36. FromBottom,
  37. [Description("From Top")]
  38. FromTop,
  39. }
  40. }