| 123456789101112131415161718192021222324252627282930313233343536 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace MECF.Framework.Common.ToolLayout{    public class PlatingCellItem : LayoutCellItem    {        /// 允许Wafer尺寸        /// </summary>        public string PermittedWaferSizeInMM { get; set; }        /// <summary>        /// Metal ID         /// </summary>        public int PlatingCellID { 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; }        /// <summary>        /// 是否有独立的泵        /// </summary>        public bool DepPump { get; set; }    }}
 |