using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Entity.SysEntity
{
///
/// 角色权限表
///
public class SysRoleRight : BaseEntity
{
public SysRoleRight()
{
}
///
/// 角色号
///
public string RoleNo { get; set; }
///
/// 菜单号
///
public string MenuNo { get; set; }
}
}