PlatingCellItem.cs 954 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MECF.Framework.Common.ToolLayout
  7. {
  8. public class PlatingCellItem : LayoutCellItem
  9. {
  10. /// 允许Wafer尺寸
  11. /// </summary>
  12. public string PermittedWaferSizeInMM { get; set; }
  13. /// <summary>
  14. /// Metal ID
  15. /// </summary>
  16. public int PlatingCellID { get; set; }
  17. /// <summary>
  18. /// Linmot ID
  19. /// </summary>
  20. public string LinmotID { get; set; }
  21. /// <summary>
  22. /// Power Supply A ID
  23. /// </summary>
  24. public string PlatingPowerSupplyAID { get; set; }
  25. /// <summary>
  26. /// Power Supply B ID
  27. /// </summary>
  28. public string PlatingPowerSupplyBID { get; set; }
  29. /// <summary>
  30. /// 是否有独立的泵
  31. /// </summary>
  32. public bool DepPump { get; set; }
  33. }
  34. }