12345678910111213141516171819202122232425262728293031323334 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MECF.Framework.Common.ToolLayout
- {
- public class MetalItem : LayoutCellItem
- {
- /// <summary>
- /// 允许Wafer尺寸
- /// </summary>
- public string PermittedWaferSizeInMM { get; set; }
- /// <summary>
- /// Metal ID
- /// </summary>
- public int MetalID { get; set; }
- /// <summary>
- /// Linmot ID
- /// </summary>
- public string LinmotID { get; set; }
- /// <summary>
- /// Power Supply A ID
- /// </summary>
- public string PlatingPowerSupplyAID { get; set; }
- /// <summary>
- /// Power Supply B ID
- /// </summary>
- public string PlatingPowerSupplyBID { get; set; }
- }
- }
|