PlatingCellItem.cs 819 B

1234567891011121314151617181920212223242526272829303132
  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 ID
  23. /// </summary>
  24. public string PlatingPowerSupplyID { get; set; }
  25. /// <summary>
  26. /// 是否有独立的泵
  27. /// </summary>
  28. public bool DepPump { get; set; }
  29. }
  30. }