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.
20 lines
319 B
20 lines
319 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";
|
|
|
|
}
|
|
|