package com.xcong.excoin.common.contants; /** * @author wzy * @date 2020-05-12 **/ public class AppContants { /** * 系统用户 */ public static final String SYSTEM_USER = "system"; /** * app用户登陆redis前缀 */ public static final String APP_LOGIN_PREFIX = "app_"; /** * token头部 */ public static final String TOKEN_HEADER = "Authorization"; /** * token start with */ public static final String TOKEN_START_WITH = "Bearer "; }