You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
test/src-源文件/main/java/com/yf/exam/modules/Constant.java

16 lines
368 B

This file contains ambiguous Unicode characters!

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 名称
}