package com.aps.common.core.constant; /** * Token的Key常量 * * @author ruoyi */ public class TokenConstants { /** * 令牌前缀 */ public static final String PREFIX = "Bearer "; /** * 令牌秘钥 */ public final static String SECRET = "abcdefghijklmnopqrstuvwxyz"; }