You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
650 B
C#

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