From 0c53416e1b9e3ea1f9fa76579c835b44bd47de64 Mon Sep 17 00:00:00 2001 From: zhouz <> Date: Wed, 22 Jul 2026 13:38:20 +0800 Subject: [PATCH] =?UTF-8?q?Revert=20"feat:=20=E6=96=B0=E5=A2=9E=20WMS=20?= =?UTF-8?q?=E6=A8=A1=E5=9D=97=20RPC=20Feign=20=E5=AE=A2=E6=88=B7=E7=AB=AF?= =?UTF-8?q?=E9=85=8D=E7=BD=AE"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit d45feffe429da76cf9dfd3d5db7a26cfc35ededa. --- nl-module-wms/nl-module-wms-server/pom.xml | 5 ----- .../framework/rpc/config/RpcConfiguration.java | 15 --------------- 2 files changed, 20 deletions(-) delete mode 100644 nl-module-wms/nl-module-wms-server/src/main/java/cn/code/nl/module/wms/framework/rpc/config/RpcConfiguration.java diff --git a/nl-module-wms/nl-module-wms-server/pom.xml b/nl-module-wms/nl-module-wms-server/pom.xml index be10ce4c..ef12b750 100644 --- a/nl-module-wms/nl-module-wms-server/pom.xml +++ b/nl-module-wms/nl-module-wms-server/pom.xml @@ -42,11 +42,6 @@ nl-module-task-api ${revision} - - cn.nl.cloud - nl-module-base-api - ${revision} - diff --git a/nl-module-wms/nl-module-wms-server/src/main/java/cn/code/nl/module/wms/framework/rpc/config/RpcConfiguration.java b/nl-module-wms/nl-module-wms-server/src/main/java/cn/code/nl/module/wms/framework/rpc/config/RpcConfiguration.java deleted file mode 100644 index dfe143ac..00000000 --- a/nl-module-wms/nl-module-wms-server/src/main/java/cn/code/nl/module/wms/framework/rpc/config/RpcConfiguration.java +++ /dev/null @@ -1,15 +0,0 @@ -package cn.code.nl.module.wms.framework.rpc.config; - -import cn.code.nl.module.base.api.codegen.CodeGenApi; -import org.springframework.cloud.openfeign.EnableFeignClients; -import org.springframework.context.annotation.Configuration; - -/** - * WMS 模块 RPC 配置 - * - * @author zhouz - */ -@Configuration(value = "wmsRpcConfiguration", proxyBeanMethods = false) -@EnableFeignClients(clients = {CodeGenApi.class}) -public class RpcConfiguration { -}