using System; using System.Collections.Generic; using System.Linq; using System.Text; using WMS.Attirubte; using System.ComponentModel; namespace WMS.Model.Strategy { /// /// 库区间定时补货策略仓库库区明细 /// [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; /// /// 补货仓库编号 /// [DisplayName("补货仓库")] public string STORAGE_ID { set { _storage_id = value; } get { return _storage_id; } } /// /// 出库库区 /// [DisplayName("出库库区")] public string OUT_AREA_ID { set { _out_area_id = value; } get { return _out_area_id; } } /// /// 入库库区 /// [DisplayName("入库库区")] public string IN_AREA_ID { set { _in_area_id = value; } get { return _in_area_id; } } /// /// 策略编号 /// [DisplayName("策略编号")] public string STRATEGY_ID { set { _strategy_id = value; } get { return _strategy_id; } } #endregion Model } }