| 123456789101112131415161718192021222324252627282930313233 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace MECF.Framework.Common.ToolLayout{    public class LayoutCellItem : LayoutModuleItem    {        /// <summary>        /// 模块名称        /// </summary>        public string ModuleName { get; set; }        /// <summary>        /// 模块类型        /// </summary>        public string ModuleType { get; set; }        /// <summary>        /// Cell Id        /// </summary>        public int CellID { get; set; }        /// <summary>        /// 类型        /// </summary>        public string CellType { get; set; }        /// <summary>        /// 名义上水平位置        /// </summary>        public int NominalGantryPositionInMilliMeters { get; set; }    }}
 |