51 lines
1.1 KiB
C#
51 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.SystemManage
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
[Serializable]
|
|||
|
|
[TableClmAttribute(TableName = "T_BASE_ROLEMESSAGE")]
|
|||
|
|
public class RoleMessageModel
|
|||
|
|
{
|
|||
|
|
private string _role_id;
|
|||
|
|
private string _message_type;
|
|||
|
|
private string _selected;
|
|||
|
|
private string _type_name;
|
|||
|
|
|
|||
|
|
[DisplayName("选择")]
|
|||
|
|
public string SELECTED
|
|||
|
|
{
|
|||
|
|
get { return _selected; }
|
|||
|
|
set { _selected = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[DisplayName("角色编号")]
|
|||
|
|
public string ROLE_ID
|
|||
|
|
{
|
|||
|
|
get { return _role_id; }
|
|||
|
|
set { _role_id = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[DisplayName("消息类型")]
|
|||
|
|
public string MESSAGE_TYPE
|
|||
|
|
{
|
|||
|
|
get { return _message_type; }
|
|||
|
|
set {
|
|||
|
|
_message_type = value;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
[DisplayName("类型名称")]
|
|||
|
|
public string TYPE_NAME
|
|||
|
|
{
|
|||
|
|
get { return _type_name; }
|
|||
|
|
set { _type_name = value; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|