12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.ruoyi.common.constant;
- /**
- * Shiro通用常量
- *
- * @author ruoyi
- */
- public interface ShiroConstants
- {
- /**
- * 当前登录的用户
- */
- public static final String CURRENT_USER = "currentUser";
- /**
- * 用户名
- */
- public static final String CURRENT_USERNAME = "username";
- /**
- * 消息key
- */
- public static String MESSAGE = "message";
- /**
- * 错误key
- */
- public static String ERROR = "errorMsg";
- /**
- * 编码格式
- */
- public static String ENCODING = "UTF-8";
- /**
- * 当前在线会话
- */
- public String ONLINE_SESSION = "online_session";
- }
|