From 45149c4de50d945a27cbc7324ec0699f5b15df14 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 27 二月 2024 13:57:47 +0800
Subject: [PATCH] 取消空格问题

---
 service-api/src/main/java/com/java110/api/smo/allocationUserStorehouse/impl/AddAllocationUserStorehouseSMOImpl.java |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/service-api/src/main/java/com/java110/api/smo/allocationUserStorehouse/impl/AddAllocationUserStorehouseSMOImpl.java b/service-api/src/main/java/com/java110/api/smo/allocationUserStorehouse/impl/AddAllocationUserStorehouseSMOImpl.java
index 930c54c..de264ef 100644
--- a/service-api/src/main/java/com/java110/api/smo/allocationUserStorehouse/impl/AddAllocationUserStorehouseSMOImpl.java
+++ b/service-api/src/main/java/com/java110/api/smo/allocationUserStorehouse/impl/AddAllocationUserStorehouseSMOImpl.java
@@ -2,11 +2,9 @@
 
 import com.alibaba.fastjson.JSONObject;
 import com.java110.api.smo.DefaultAbstractComponentSMO;
-import com.java110.core.component.AbstractComponentSMO;
 import com.java110.core.context.IPageData;
-import com.java110.entity.component.ComponentValidateResult;
+import com.java110.dto.system.ComponentValidateResult;
 import com.java110.api.smo.allocationUserStorehouse.IAddAllocationUserStorehouseSMO;
-import com.java110.utils.constant.ServiceConstant;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.http.HttpMethod;
 import org.springframework.http.ResponseEntity;
@@ -37,7 +35,7 @@
         paramIn.put("userId", pd.getUserId());
         paramIn.put("userName", pd.getUserName());
         responseEntity = this.callCenterService(restTemplate, pd, paramIn.toJSONString(),
-                ServiceConstant.SERVICE_API_URL + "/api/resourceStore.saveAllocationUserStorehouse",
+                "resourceStore.saveAllocationUserStorehouse",
                 HttpMethod.POST);
         return responseEntity;
     }

--
Gitblit v1.8.0