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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Web;
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.Models
|
|
|
|
|
{
|
|
|
|
|
public class WmsStorageAreaEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 构造函数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public WmsStorageAreaEntity()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region 读写属性
|
|
|
|
|
private string _gid;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 惟一编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string GID
|
|
|
|
|
{
|
|
|
|
|
get { return _gid; }
|
|
|
|
|
set { _gid = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _areacode;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 库位编码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string AREACODE
|
|
|
|
|
{
|
|
|
|
|
get { return _areacode; }
|
|
|
|
|
set { _areacode = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _areaname;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 库位名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string AREANAME
|
|
|
|
|
{
|
|
|
|
|
get { return _areaname; }
|
|
|
|
|
set { _areaname = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _customername;
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 仓库名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CUSTOMERNAME
|
|
|
|
|
{
|
|
|
|
|
get { return _customername; }
|
|
|
|
|
set { _customername = value; }
|
|
|
|
|
}
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|