Define.cs 622 Bytes
namespace WebApp
{
    public static class Define
    {
        public static string USERROLE = "UserRole";       //用户角色关联KEY
        public const string USERORG = "UserOrg";  //用户机构关联KEY
        public const string ROLEORG = "RoleOrg";  //角色机构关联KEY
        public const string USERELEMENT = "UserElement";  //用户菜单关联KEY
        public const string ROLEELEMENT = "RoleElement"; //角色菜单关联KEY
        public const string USERMODULE = "UserModule";   //用户模块关联KEY
        public const string ROLEMODULE = "RoleModule";   //角色模块关联KEY
    }
}