Blame view

WebApp/Define.cs 622 Bytes
霍尔 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
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
    }
}