using System; using System.Collections.Generic; using System.Linq; using System.Text; using WMS.Attirubte; using System.ComponentModel; namespace WMS.Model.Base { #region 托盘StatusModel /// /// 托盘StatusModel /// [Serializable] [TableClmAttribute(TableName = "T_BASE_PALLET_STATUS")] public class PalletStatusModel { //托盘Status编号 20 private string _pallet_status_id; //托盘编号 20 private string _pallet_id; //事物类型编号 VC_DICTIONARYID 20 private string _vc_dictionary_id; //所在仓库 20 private string _storage_id; //所在库区 20 private string _storage_area_id; //版本号 20 private string _version; [DisplayName("托盘Status编号")] public string PALLET_STATUS_ID { get { return _pallet_status_id; } set { _pallet_status_id = value; } } [DisplayName("托盘编号")] public string PALLET_ID { get { return _pallet_id; } set { _pallet_id = value; } } [DisplayName("事物类型编号")] public string VC_DICTIONARY_ID { get { return _vc_dictionary_id; } set { _vc_dictionary_id = value; } } [DisplayName("所在仓库")] public string STORAGE_ID { get { return _storage_id; } set { _storage_id = value; } } [DisplayName("所在库区")] public string STORAGE_AREA_ID { get { return _storage_area_id; } set { _storage_area_id = value; } } [DisplayName("版本号")] public string VERSION { get { return _version; } set { _version = value; } } } #endregion }