82 lines
2.1 KiB
C#
82 lines
2.1 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_GOODS")]
|
|||
|
|
public class StrAreaRepGoodsModel
|
|||
|
|
{
|
|||
|
|
#region Model
|
|||
|
|
private string _strategy_id;
|
|||
|
|
private string _goods_id;
|
|||
|
|
private decimal _stock_num;
|
|||
|
|
private decimal _num;
|
|||
|
|
private string _unit;
|
|||
|
|
private string _goods_name;
|
|||
|
|
/// <summary>
|
|||
|
|
/// 策略编号
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("策略编号")]
|
|||
|
|
public string STRATEGY_ID
|
|||
|
|
{
|
|||
|
|
set { _strategy_id = value; }
|
|||
|
|
get { return _strategy_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 物料编号
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("物料编号")]
|
|||
|
|
public string GOODS_ID
|
|||
|
|
{
|
|||
|
|
set { _goods_id = value; }
|
|||
|
|
get { return _goods_id; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 物料名称
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("物料")]
|
|||
|
|
[TableClm(NoSelect = false)]
|
|||
|
|
public string GOODS_NAME
|
|||
|
|
{
|
|||
|
|
set { _goods_name = value; }
|
|||
|
|
get { return _goods_name; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 库存下限(捡货区小于这个数补货)
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("库存下限")]
|
|||
|
|
public decimal STOCK_NUM
|
|||
|
|
{
|
|||
|
|
set { _stock_num = value; }
|
|||
|
|
get { return _stock_num; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 补货数量
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("补货数量")]
|
|||
|
|
public decimal NUM
|
|||
|
|
{
|
|||
|
|
set { _num = value; }
|
|||
|
|
get { return _num; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
/// 单位
|
|||
|
|
/// </summary>
|
|||
|
|
[DisplayName("单位")]
|
|||
|
|
public string UNIT
|
|||
|
|
{
|
|||
|
|
set { _unit = value; }
|
|||
|
|
get { return _unit; }
|
|||
|
|
}
|
|||
|
|
#endregion Model
|
|||
|
|
}
|
|||
|
|
}
|