package com.iailab.module.enums;
|
|
import com.iailab.framework.common.enums.RpcConstants;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年08月26日
|
*/
|
public class ApiConstants {
|
/**
|
* 服务名
|
*
|
* 注意,需要保证和 spring.application.name 保持一致
|
*/
|
public static final String NAME = "ansteel-server";
|
|
public static final String PREFIX = RpcConstants.RPC_API_PREFIX + "/ansteel";
|
|
}
|