using System; using System.Collections.Generic; using System.Text; namespace CentralControl.BaseData { public class LineInfo { public int Id { get; set; } /// /// 产线编号 /// public string LineNumber { get; set; } /// /// 产线名称 /// public string LineNm { get; set; } /// /// 产线类型 /// public int LineType { get; set; } public string LineId { get; set; } public virtual ICollection LineCatchArea { get; set; } } }