using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DataEntity;
namespace XImagingXhandler.XDAL
{
///
/// 角色和菜单关联实体
///
public class RoleMenu:IEntity
{
private string _rolemenuid;
///
/// 角色菜单Id
///
public string rolemenuid
{
get { return _rolemenuid; }
set
{
_rolemenuid = value;
OnPropertyChanged("rolemenuid");
}
}
private string _rolemenuname;
///
/// 角色菜单名称
///
public string rolemenuname
{
get { return _rolemenuname; }
set
{
_rolemenuname = value;
OnPropertyChanged("rolemenuname");
}
}
private string _rolemenuChildIds;
///
/// 角色子菜单Id集合串
///
public string rolemenuChildIds
{
get { return _rolemenuChildIds; }
set
{
_rolemenuChildIds = value;
OnPropertyChanged("rolemenuChildIds");
}
}
private List _rolemenuchildren;
///
/// 角色子菜单集合
///
public List rolemenuchildren
{
get { return _rolemenuchildren; }
set
{
_rolemenuchildren = value;
OnPropertyChanged("rolemenuchildren");
}
}
}
}