This commit is contained in:
yubaolee
2015-04-15 23:57:36 +08:00
commit 7c42a3fc9f
119 changed files with 18893 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace OpenAuth.Domain
{
public partial class RoleMenuButton
{
public string RoleMenuButtonId { get; set; }
public string RoleId { get; set; }
public string MenuId { get; set; }
public string ButtonId { get; set; }
public virtual Button Button { get; set; }
public virtual Menu Menu { get; set; }
public virtual Role Role { get; set; }
}
}