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.

59 lines
1.5 KiB
C#

2 years ago
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>
/// 所属线体 1 箱体左库区,空车座库区 ,2 箱体右库区 , 空车右库区
/// </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; }
public string MaterialNm { get; set; }
/// <summary>
/// 存放类型(1单一类型0混合类型
/// </summary>
public int AreaStorageType { get; set; }
//public virtual ICollection<NodeSetting> NodeSetting { get; set; }
}
}