luodangjia
2024-04-28 94e9dc3adb80baf6e1d7d56e54a93917996bc339
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package cn.stylefeng.rest.core.consts;
 
import cn.stylefeng.rest.RestApplication;
 
/**
 * 项目的常量
 *
 * @author fengshuonan
 * @since 2020/12/16 14:28
 */
public interface ProjectConstants {
 
    /**
     * 项目的模块名称
     */
    String PROJECT_MODULE_NAME = "guns-standalone";
 
    /**
     * 异常枚举的步进值
     */
    String BUSINESS_EXCEPTION_STEP_CODE = "100";
 
    /**
     * 项目的包名,例如cn.stylefeng.guns
     */
    String ROOT_PACKAGE_NAME = RestApplication.class.getPackage().getName();
 
}