forked from rongchao/epmet-cloud-rizhao
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
656 B
18 lines
656 B
5 years ago
|
package com.epmet.constant;
|
||
|
|
||
|
/**
|
||
|
* 角色key常量
|
||
|
*/
|
||
|
public class RoleKeyConstants {
|
||
|
|
||
|
public static final String ROLE_KEY_MANAGER = "manager";
|
||
|
public static final String ROLE_KEY_PARTY_PRINCIPALS = "party_principals";
|
||
|
public static final String ROLE_KEY_GRID_MANAGER = "grid_manager";
|
||
|
public static final String ROLE_KEY_AGENCY_LEADER = "agency_leader";
|
||
|
public static final String ROLE_KEY_GRID_PARTY_DIRECTOR = "grid_party_director";
|
||
|
public static final String ROLE_KEY_DEPT_LEADER = "dept_leader";
|
||
|
public static final String ROLE_KEY_STAFF = "staff";
|
||
|
public static final String ROLE_KEY_GRID_MEMBER = "grid_member";
|
||
|
|
||
|
}
|