【fix sonar】ServiceNameConstants文件

This commit is contained in:
梁琦涛
2023-03-03 13:48:19 +08:00
parent 3ebfb0feb5
commit e7accf5c1c
@@ -23,16 +23,20 @@ package com.jero.common.constant;
* @date 2019年05月18日 * @date 2019年05月18日
* 服务名称 * 服务名称
*/ */
public interface ServiceNameConstants { public class ServiceNameConstants {
private ServiceNameConstants(){
}
/** /**
* 系统管理 admin * 系统管理 admin
*/ */
String SYSTEM_SERVICE = "jero-system"; public static final String SYSTEM_SERVICE = "jero-system";
/** /**
* gateway通过header传递根路径 basePath * gateway通过header传递根路径 basePath
*/ */
String X_GATEWAY_BASE_PATH = "X_GATEWAY_BASE_PATH"; public static final String X_GATEWAY_BASE_PATH = "X_GATEWAY_BASE_PATH";
} }