49 lines
1.2 KiB
C#
49 lines
1.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_base_roledictionary")]
|
|
public class RoleDictionaryModel
|
|
{
|
|
#region Model
|
|
private string _role_id =string.Empty;
|
|
private string _role_name = string.Empty;
|
|
private string _role_desc = string.Empty;
|
|
/// <summary>
|
|
/// Role Name
|
|
/// </summary>
|
|
[DisplayName("角色编号")]
|
|
public string ROLE_ID
|
|
{
|
|
set { _role_id = value; }
|
|
get { return _role_id; }
|
|
}
|
|
/// <summary>
|
|
/// Role Name
|
|
/// </summary>
|
|
[DisplayName("角色名称")]
|
|
public string ROLE_NAME
|
|
{
|
|
set { _role_name = value; }
|
|
get { return _role_name; }
|
|
}
|
|
/// <summary>
|
|
/// 描述
|
|
/// </summary>
|
|
[DisplayName("角色描述")]
|
|
public string ROLE_DESC
|
|
{
|
|
set { _role_desc = value; }
|
|
get { return _role_desc; }
|
|
}
|
|
#endregion Model
|
|
}
|
|
}
|