using System; using WMS.Attirubte; using System.ComponentModel; namespace WMS.Model.Base { /// /// 角色仓库关联表 /// [Serializable] [TableClmAttribute(TableName = "t_base_storage_role")] public partial class RoleStorageModel { #region Model private string _role_id; private string _storage_name; private string _storage_area_id; private string _storage_type_id; private string _storage_id; private string _storage_area_location_id; /// /// 角色 /// [DisplayName("角色")] public string ROLE_ID { set { _role_id = value; } get { return _role_id; } } /// /// 仓库类型 /// [DisplayName("仓库类型")] public string STORAGE_TYPE_ID { set { _storage_type_id = value; } get { return _storage_type_id; } } /// /// 仓库编号 /// [DisplayName("仓库编号")] public string STORAGE_ID { set { _storage_id = value; } get { return _storage_id; } } /// /// 库区编号 /// [DisplayName("库区编号")] public string STORAGE_AREA_ID { set { _storage_area_id = value; } get { return _storage_area_id; } } /// /// 库位编号 /// [DisplayName("库位编号")] public string STORAGE_AREA_LOCATION_ID { set { _storage_area_location_id = value; } get { return _storage_area_location_id; } } /// /// 仓库 /// [DisplayName("仓库")] public string STORAGE_NAME { set { _storage_name = value; } get { return _storage_name; } } #endregion Model } }