66 lines
1.6 KiB
C#
66 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WMS.Attirubte;
|
|
|
|
namespace WMS.Model.Base
|
|
{
|
|
/// <summary>
|
|
/// 库区、物料 关联
|
|
/// </summary>
|
|
[Serializable]
|
|
[TableClmAttribute(TableName = "T_BASE_AREA_GOODS")]
|
|
public class AreaGoodsModel
|
|
{
|
|
private string _storage_area_name = "";
|
|
private string _goods_id = "";
|
|
private string _area_id = "";
|
|
string _storage_id="";
|
|
|
|
/// <summary>
|
|
/// 库区编号
|
|
/// </summary>
|
|
[DisplayName("仓库")]
|
|
public string Storage_id
|
|
{
|
|
set { _storage_id = value; }
|
|
get { return _storage_id; }
|
|
}
|
|
/// <summary>
|
|
/// 库区编号
|
|
/// </summary>
|
|
[DisplayName("库区")]
|
|
public string AREA_ID
|
|
{
|
|
set { _area_id = value; }
|
|
get { return _area_id; }
|
|
}
|
|
/// <summary>
|
|
/// 库区
|
|
/// </summary>
|
|
[DisplayName("库区")]
|
|
[TableClm(NoSelect = false)]
|
|
public string STORAGE_AREA_NAME
|
|
{
|
|
set { _storage_area_name = value; }
|
|
get { return _storage_area_name; }
|
|
}
|
|
[DisplayName("物料编号")]
|
|
public string Goods_ID
|
|
{
|
|
set { _goods_id = value; }
|
|
get { return _goods_id; }
|
|
}
|
|
string goods_name = "";
|
|
[DisplayName("物料名称")]
|
|
public string Goods_Name
|
|
{
|
|
set { goods_name = value; }
|
|
get { return goods_name; }
|
|
}
|
|
}
|
|
}
|