From 1e65523fba19e99dbdf71d0a731a7747a2c9d4e0 Mon Sep 17 00:00:00 2001
From: fhx <308050795@qq.com>
Date: 星期五, 23 八月 2024 16:20:08 +0800
Subject: [PATCH] Merge branch 'master-xlk' into master-xlk-test

---
 phis-feign/src/main/java/com/hz/his/feign/service/sync/SyncGoodsService.java |   21 ++++++++++-----------
 1 files changed, 10 insertions(+), 11 deletions(-)

diff --git a/phis-feign/src/main/java/com/hz/his/feign/service/sync/SyncGoodsService.java b/phis-feign/src/main/java/com/hz/his/feign/service/sync/SyncGoodsService.java
index 2a68bc7..7020e64 100644
--- a/phis-feign/src/main/java/com/hz/his/feign/service/sync/SyncGoodsService.java
+++ b/phis-feign/src/main/java/com/hz/his/feign/service/sync/SyncGoodsService.java
@@ -1,9 +1,8 @@
 package com.hz.his.feign.service.sync;
 
-import com.alibaba.fastjson.JSONObject;
 import com.hx.resultTool.Result;
-import com.hz.his.dto.material.Consumables;
-import com.hz.his.dto.material.ConsumablesType;
+import com.hz.his.dto.material.ConsumablesDto;
+import com.hz.his.dto.material.ConsumablesTypeDto;
 import org.springframework.cloud.openfeign.FeignClient;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -11,7 +10,7 @@
 /**
  * @Author
  */
-@FeignClient(name="synchro-service",path = "/his_synchro",contextId = "synchro-goods")
+@FeignClient(name="phi-platform-user",path = "/his_synchro",contextId = "synchro-goods")
 public interface SyncGoodsService {
 
     /**
@@ -20,33 +19,33 @@
      * @return 鎿嶄綔鎴愬姛鐨勮瘽result.data杩斿洖棰嗗缓id
      */
     @PostMapping(value = "/sync/goods/category/add")
-    Result addCategory(@RequestBody ConsumablesType consumablesType);
+    Result addCategory(@RequestBody ConsumablesTypeDto consumablesType);
     /**
      * 淇敼鎸囧畾ID鍒嗙被鑺傜偣 - 鍚勭被鍨嬮�氱敤
      * @param consumablesType
      * @return
      */
     @PostMapping(value = "/sync/goods/category/update")
-    Result updateCategory(@RequestBody ConsumablesType consumablesType);
+    Result updateCategory(@RequestBody ConsumablesTypeDto consumablesType);
     /**
      * 鍒犻櫎鎸囧畾ID鍒嗙被鑺傜偣 - 鍚勭被鍨嬮�氱敤
      * @param consumablesType
      * @return
      */
     @PostMapping(value = "/sync/goods/category/delete")
-    Result deleteCategory(@RequestBody ConsumablesType consumablesType);
+    Result deleteCategory(@RequestBody ConsumablesTypeDto consumablesType);
     /**
-     * 鍒犻櫎鎸囧畾ID鍒嗙被鑺傜偣 - 鍚勭被鍨嬮�氱敤
+     * 鏂板缓鐗╂枡绫绘暟鎹�
      * @param consumables
      * @return 鎿嶄綔鎴愬姛鐨勮瘽result.data杩斿洖棰嗗缓id
      */
     @PostMapping(value = "/sync/goods/product/add")
-    Result addProduct(@RequestBody Consumables consumables);
+    Result addProduct(@RequestBody ConsumablesDto consumables);
     /**
-     * 鍒犻櫎鎸囧畾ID鍒嗙被鑺傜偣 - 鍚勭被鍨嬮�氱敤
+     * 淇敼鐗╂枡绫绘暟鎹�
      * @param consumables
      * @return
      */
     @PostMapping(value = "/sync/goods/product/update")
-    Result updateProduct(@RequestBody Consumables consumables);
+    Result updateProduct(@RequestBody ConsumablesDto consumables);
 }

--
Gitblit v1.8.0