using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using Core.Mes.Client.Comm.Attribute;
namespace Core.StlMes.Client.LgResMgt
{
public class MatGpMAndStorageEntity:MatGpMEntity
{
///
/// 料位代码{4位库号-1位区号-2行号-2列号}
///
private string locationNo = "";
///
/// 料位代码{4位库号-1位区号-2行号-2列号}
///
[Description("料位代码{4位库号-1位区号-2行号-2列号}")]
[Nullable(false)]
[DataLength(9)]
public string LocationNo
{
get { return locationNo; }
set { locationNo = value; }
}
///
/// 料位代码{4位库号-1位区号-2行号-2列号}
///
private string locationName = "";
///
/// 料位代码{4位库号-1位区号-2行号-2列号}
///
[Description("料位")]
[Nullable(false)]
[DataLength(9)]
public string LocationName
{
get { return locationName; }
set { locationName = value; }
}
///
/// 仓库代码(仓库类型1+仓储地址代码2+1位序号)
///
private string storageNo = "";
}
}