49 lines
1.1 KiB
C#
49 lines
1.1 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using WMS.Attirubte;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace WMS.Model.Base
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
[TableClmAttribute(TableName = "t_base_role")]
|
|||
|
|
public class RoleModel
|
|||
|
|
{
|
|||
|
|
#region Model
|
|||
|
|
private string _role_id="";
|
|||
|
|
private string _role_name = "";
|
|||
|
|
private string _role_desc = "";
|
|||
|
|
private string _ischeck = "0";
|
|||
|
|
|
|||
|
|
[DisplayName("")]
|
|||
|
|
public string ISCHECK
|
|||
|
|
{
|
|||
|
|
set { _ischeck = value; }
|
|||
|
|
get { return _ischeck; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[DisplayName("角色编号")]
|
|||
|
|
public string ROLE_ID
|
|||
|
|
{
|
|||
|
|
set { _role_id = value; }
|
|||
|
|
get { return _role_id; }
|
|||
|
|
}
|
|||
|
|
[DisplayName("角色名称")]
|
|||
|
|
public string ROLE_NAME
|
|||
|
|
{
|
|||
|
|
set { _role_name = value; }
|
|||
|
|
get { return _role_name; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[DisplayName("角色描述")]
|
|||
|
|
public string ROLE_DESC
|
|||
|
|
{
|
|||
|
|
set { _role_desc = value; }
|
|||
|
|
get { return _role_desc; }
|
|||
|
|
}
|
|||
|
|
#endregion
|
|||
|
|
}
|
|||
|
|
}
|