95 lines
2.2 KiB
C#
95 lines
2.2 KiB
C#
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;
|
|
|
|
///// <summary>
|
|
///// 选择
|
|
///// </summary>
|
|
//[DisplayName("选择")]
|
|
//public string SELECTED
|
|
//{
|
|
// get { return _selected; }
|
|
// set { _selected = value; }
|
|
//}
|
|
|
|
/// <summary>
|
|
/// 参数类型
|
|
/// </summary>
|
|
[DisplayName("参数类型")]
|
|
public string PARAMTYPE
|
|
{
|
|
set { _paramtype = value; }
|
|
get { return _paramtype; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 参数说明
|
|
/// </summary>
|
|
[DisplayName("参数说明")]
|
|
public string PARAMCOMMENTS
|
|
{
|
|
set { _paramcomments = value; }
|
|
get { return _paramcomments; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 当前值
|
|
/// </summary>
|
|
[DisplayName("当前值")]
|
|
public string PARAMVALUE
|
|
{
|
|
set { _paramvalue = value; }
|
|
get { return _paramvalue; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 系统操作员
|
|
/// </summary>
|
|
[DisplayName("系统操作员")]
|
|
public string SYSUSER
|
|
{
|
|
set { _sysuser = value; }
|
|
get { return _sysuser; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 系统日期
|
|
/// </summary>
|
|
[DisplayName("系统日期")]
|
|
public DateTime PARAMDATE
|
|
{
|
|
set { _paramdate = value; }
|
|
get { return _paramdate; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 模块
|
|
/// </summary>
|
|
[DisplayName("模块")]
|
|
public string PARAMMENU
|
|
{
|
|
set { _parammenu = value; }
|
|
get { return _parammenu; }
|
|
}
|
|
#endregion Model
|
|
}
|
|
}
|