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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System ;
using System.Collections.Generic ;
using System.Text ;
namespace CentralControl.BaseData
{
public class LineCatchArea
{
public int Id { get ; set ; }
/// <summary>
/// 区域编码
/// </summary>
public string AreaNo { get ; set ; }
/// <summary>
/// 区域名称
/// </summary>
public string AreaNm { get ; set ; }
/// <summary>
/// 所属线体
/// </summary>
public string LineNo { get ; set ; }
/// <summary>
/// 所属线体
/// </summary>
// public virtual LineInfo LineInfo { get; set; }
/// <summary>
/// 区域类型 1上件区 2 下件区 ,3下件存储区,4 库区 ,5 上件存储区 6汇总点
/// </summary>
public int AreaType
{
get ;
set ;
}
/// <summary>
/// MaxNumber
/// </summary>
public int MaxNumber
{
get ;
set ;
}
/// <summary>
/// 预设物料编码
/// </summary>
public string MaterialNo { get ; set ; }
/// <summary>
/// 存放类型(1: 单一类型; 0: 混合类型)
/// </summary>
public int AreaStorageType { get ; set ; }
//public virtual ICollection<NodeSetting> NodeSetting { get; set; }
}
}