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();
|
|
}
|