using System; using System.Collections.Generic; using System.Linq; using System.Text; using WMS.Attirubte; using System.ComponentModel; namespace WMS.Model.SystemManage { [Serializable] [TableClmAttribute(TableName = "T_SYS_PARAM")] public class SystemParamsModel { #region Model private string _paramtype; private string _paramcomments; private string _paramvalue; private string _sysuser; private DateTime _paramdate; private string _parammenu = string.Empty; //private string _selected; ///// ///// 选择 ///// //[DisplayName("选择")] //public string SELECTED //{ // get { return _selected; } // set { _selected = value; } //} /// /// 参数类型 /// [DisplayName("参数类型")] public string PARAMTYPE { set { _paramtype = value; } get { return _paramtype; } } /// /// 参数说明 /// [DisplayName("参数说明")] public string PARAMCOMMENTS { set { _paramcomments = value; } get { return _paramcomments; } } /// /// 当前值 /// [DisplayName("当前值")] public string PARAMVALUE { set { _paramvalue = value; } get { return _paramvalue; } } /// /// 系统操作员 /// [DisplayName("系统操作员")] public string SYSUSER { set { _sysuser = value; } get { return _sysuser; } } /// /// 系统日期 /// [DisplayName("系统日期")] public DateTime PARAMDATE { set { _paramdate = value; } get { return _paramdate; } } /// /// 模块 /// [DisplayName("模块")] public string PARAMMENU { set { _parammenu = value; } get { return _parammenu; } } #endregion Model } }