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/ability/Constant.java

18 lines
618 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.ability;
/**
* 通用常量类
* 用于定义系统中使用的常量值,提供全局可访问的常量。
* @author bool
*/
public class Constant {
/**
* 文件上传路径的前缀常量
* 用于指定上传文件的基础路径所有上传的文件URL都会以这个路径开头。
* 例如: /upload/file/example.jpg
* 这个前缀用于构建和解析文件的URL以便在系统中统一管理和访问上传的文件。
*/
public static final String FILE_PREFIX = "/upload/file/";
}