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.
 
 
 
 
 

55 lines
789 B

package com.epmet.constant;
/**
* @Description
* @IntefaceName UserRoleConstant
* @Author sun
*/
public interface UserRoleConstant {
/**
* 角色表对应的是居民角色时grid_id的默认值
*/
String DEFAULT_GRID_ID = "all";
/**
* 部门领导角色值
*/
String DEPT_LEADER = "dept_leader";
/**
* 单位领导
*/
String AGENCY_LEADER = "agency_leader";
/**
* 党建负责人
*/
String PARTY_PRINCIPALS = "party_principals";
/**
* 管理员
*/
String MANAGER = "manager";
/**
* 工作人员
*/
String STAFF = "staff";
/**
* 网格长
*/
String GRID_MANAGER = "grid_manager";
/**
* 网格党建指导员
*/
String GRID_PARTY_DIRECTOR = "grid_party_director";
/**
* 网格员
*/
String GRID_MEMBER = "grid_member";
}