12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- package com.boman.domain.constant;
- /**
- * 缓存的key 常量
- *
- * @author ruoyi
- */
- public class CacheConstants
- {
- /**
- * 令牌自定义标识
- */
- public static final String HEADER = "Authorization";
- /**
- * 令牌前缀
- */
- public static final String TOKEN_PREFIX = "Bearer ";
- /**
- * 权限缓存前缀
- */
- public final static String LOGIN_TOKEN_KEY = "login_tokens:";
- /**
- * 用户ID字段
- */
- public static final String DETAILS_USER_ID = "user_id";
- /**
- * 用户名字段
- */
- public static final String DETAILS_USERNAME = "username";
- /**
- * 授权信息字段
- */
- public static final String AUTHORIZATION_HEADER = "authorization";
- /**
- * 人员信息查询部门集合
- */
- public static final String DEPT_LIST = "dept_list_query";
- }
|