xiejun
2024-11-01 80b6cbfc9c861469146318d0b3dd5f8b8b525b8a
Source/BladeX-Tool/blade-core-launch/src/main/java/org/springblade/core/launch/constant/AppConstant.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,131 @@
/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill åº„骞 (smallchill@163.com)
 */
package org.springblade.core.launch.constant;
/**
 * ç³»ç»Ÿå¸¸é‡
 *
 * @author Chill
 */
public interface AppConstant {
   /**
    * åº”用版本
    */
   String APPLICATION_VERSION = "3.0.1.RELEASE";
   /**
    * åŸºç¡€åŒ…
    */
   String BASE_PACKAGES = "org.springblade";
   /**
    * åº”用名前缀
    */
   String APPLICATION_NAME_PREFIX = "blade-";
   /**
    * ç½‘关模块名称
    */
   String APPLICATION_GATEWAY_NAME = APPLICATION_NAME_PREFIX + "gateway";
   /**
    * æŽˆæƒæ¨¡å—名称
    */
   String APPLICATION_AUTH_NAME = APPLICATION_NAME_PREFIX + "auth";
   /**
    * ç›‘控模块名称
    */
   String APPLICATION_ADMIN_NAME = APPLICATION_NAME_PREFIX + "admin";
   /**
    * æŠ¥è¡¨ç³»ç»Ÿåç§°
    */
   String APPLICATION_REPORT_NAME = APPLICATION_NAME_PREFIX + "report";
   /**
    * é›†ç¾¤ç›‘控名称
    */
   String APPLICATION_TURBINE_NAME = APPLICATION_NAME_PREFIX + "turbine";
   /**
    * é“¾è·¯è¿½è¸ªåç§°
    */
   String APPLICATION_ZIPKIN_NAME = APPLICATION_NAME_PREFIX + "zipkin";
   /**
    * websocket名称
    */
   String APPLICATION_WEBSOCKET_NAME = APPLICATION_NAME_PREFIX + "websocket";
   /**
    * é¦–页模块名称
    */
   String APPLICATION_DESK_NAME = APPLICATION_NAME_PREFIX + "desk";
   /**
    * ç³»ç»Ÿæ¨¡å—名称
    */
   String APPLICATION_SYSTEM_NAME = APPLICATION_NAME_PREFIX + "system";
   /**
    * ç”¨æˆ·æ¨¡å—名称
    */
   String APPLICATION_USER_NAME = APPLICATION_NAME_PREFIX + "user";
   /**
    * æ—¥å¿—模块名称
    */
   String APPLICATION_LOG_NAME = APPLICATION_NAME_PREFIX + "log";
   /**
    * å¼€å‘模块名称
    */
   String APPLICATION_DEVELOP_NAME = APPLICATION_NAME_PREFIX + "develop";
   /**
    * æµç¨‹è®¾è®¡å™¨æ¨¡å—名称
    */
   String APPLICATION_FLOWDESIGN_NAME = APPLICATION_NAME_PREFIX + "flowdesign";
   /**
    * å·¥ä½œæµæ¨¡å—名称
    */
   String APPLICATION_FLOW_NAME = APPLICATION_NAME_PREFIX + "flow";
   /**
    * èµ„源模块名称
    */
   String APPLICATION_RESOURCE_NAME = APPLICATION_NAME_PREFIX + "resource";
   /**
    * æŽ¥å£æ–‡æ¡£æ¨¡å—名称
    */
   String APPLICATION_SWAGGER_NAME = APPLICATION_NAME_PREFIX + "swagger";
   /**
    * æµ‹è¯•模块名称
    */
   String APPLICATION_TEST_NAME = APPLICATION_NAME_PREFIX + "test";
   /**
    * æ¼”示模块名称
    */
   String APPLICATION_DEMO_NAME = APPLICATION_NAME_PREFIX + "demo";
   /**
    * å¼€å‘环境
    */
   String DEV_CODE = "dev";
   /**
    * ç”Ÿäº§çŽ¯å¢ƒ
    */
   String PROD_CODE = "prod";
   /**
    * æµ‹è¯•环境
    */
   String TEST_CODE = "test";
   /**
    * ä»£ç éƒ¨ç½²äºŽ linux ä¸Šï¼Œå·¥ä½œé»˜è®¤ä¸º mac å’Œ Windows
    */
   String OS_NAME_LINUX = "LINUX";
}