using System; using System.Collections.Generic; using System.Text; namespace CentralControl.BaseData { public class LineCatchArea { public int Id { get; set; } /// /// 区域编码 /// public string AreaNo { get; set; } /// /// 区域名称 /// public string AreaNm { get; set; } /// /// 所属线体 1 箱体左库区,空车座库区 ,2 箱体右库区 , 空车右库区 /// public string LineNo { get; set; } /// /// 所属线体 /// // public virtual LineInfo LineInfo { get; set; } /// /// 区域类型 1上件区 2 下件区 ,3下件存储区,4 库区 ,5 空车区 6汇总点 /// public int AreaType { get; set; } /// /// MaxNumber /// public int MaxNumber { get; set; } /// /// 预设物料编码 /// public string MaterialNo { get; set; } public string MaterialNm { get; set; } /// /// 存放类型(1:单一类型;0:混合类型) /// public int AreaStorageType { get; set; } //public virtual ICollection NodeSetting { get; set; } } }