fix:任务拆解

This commit is contained in:
2026-07-15 14:59:05 +08:00
parent a066ec3637
commit 90c4a9e8e9
16 changed files with 206 additions and 9 deletions

View File

@@ -43,4 +43,28 @@ public interface RpcConstants {
*/
String TASK_PREFIX = RPC_API_PREFIX + "/task";
/**
* lms 服务名
*
* 注意,需要保证和 spring.application.name 保持一致
*/
String LMS_NAME = "lms-server";
/**
* lms 服务的前缀
*/
String LMS_PREFIX = RPC_API_PREFIX + "/lms";
/**
* wms 服务名
*
* 注意,需要保证和 spring.application.name 保持一致
*/
String WMS_NAME = "wms-server";
/**
* wms 服务的前缀
*/
String WMS_PREFIX = RPC_API_PREFIX + "/wms";
}