MetalItem.cs 899 B

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