This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.yf.exam.modules; // 包名:表示该类属于 modules 包
/**
* 通用常量类
* 用于存放项目中使用的常量
* @作者 bool
*/
public class Constant {
* 会话常量
* 用于存放 Token 的常量名
public static final String TOKEN = "token"; // 定义一个常量 TOKEN,表示会话中的 Token 名称
}