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.
47 lines
974 B
47 lines
974 B
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";
|
|
|
|
}
|
|
|