61 lines
1.5 KiB
C#
61 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using WMS.Attirubte;
|
|
using System.ComponentModel;
|
|
|
|
namespace WMS.Model.Strategy
|
|
{
|
|
/// <summary>
|
|
/// 库区间定时补货策略仓库库区明细
|
|
/// </summary>
|
|
[Serializable]
|
|
[TableClmAttribute(TableName = "T_STR_AREAREP_STORAGE")]
|
|
public class StrAreaRepStorageModel
|
|
{
|
|
#region Model
|
|
private string _storage_id;
|
|
private string _out_area_id;
|
|
private string _in_area_id;
|
|
private string _strategy_id;
|
|
/// <summary>
|
|
/// 补货仓库编号
|
|
/// </summary>
|
|
[DisplayName("补货仓库")]
|
|
public string STORAGE_ID
|
|
{
|
|
set { _storage_id = value; }
|
|
get { return _storage_id; }
|
|
}
|
|
/// <summary>
|
|
/// 出库库区
|
|
/// </summary>
|
|
[DisplayName("出库库区")]
|
|
public string OUT_AREA_ID
|
|
{
|
|
set { _out_area_id = value; }
|
|
get { return _out_area_id; }
|
|
}
|
|
/// <summary>
|
|
/// 入库库区
|
|
/// </summary>
|
|
[DisplayName("入库库区")]
|
|
public string IN_AREA_ID
|
|
{
|
|
set { _in_area_id = value; }
|
|
get { return _in_area_id; }
|
|
}
|
|
/// <summary>
|
|
/// 策略编号
|
|
/// </summary>
|
|
[DisplayName("策略编号")]
|
|
public string STRATEGY_ID
|
|
{
|
|
set { _strategy_id = value; }
|
|
get { return _strategy_id; }
|
|
}
|
|
#endregion Model
|
|
}
|
|
}
|