SorterRecipeTransferTableItem.cs 823 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using MECF.Framework.Common.Equipment;
  6. namespace Aitex.Sorter.Common
  7. {
  8. public class SorterRecipeTransferTableItem
  9. {
  10. public ModuleName SourceStation { get; set; }
  11. public int SourceSlot { get; set; }
  12. public ModuleName DestinationStation { get; set; }
  13. public int DestinationSlot { get; set; }
  14. public bool IsReadLaserMarker { get; set; }
  15. public bool IsReadT7Code { get; set; }
  16. public bool IsVerifyLaserMarker { get; set; }
  17. public bool IsVerifyT7Code { get; set; }
  18. public bool IsAlign { get; set; }
  19. public bool IsTurnOver { get; set; } = false;
  20. public double AlignAngle { get; set; }
  21. public OrderByMode OrderBy { get; set; }
  22. }
  23. }