|
@@ -0,0 +1,14 @@
|
|
|
+package com.diagbot.client;
|
|
|
+
|
|
|
+import com.diagbot.client.hystrix.KnowledgemanServiceHystrix;
|
|
|
+import org.springframework.cloud.openfeign.FeignClient;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 调用知识库后台
|
|
|
+ * @author: gaodm
|
|
|
+ * @time: 2019/10/15 11:08
|
|
|
+ */
|
|
|
+@FeignClient(value = "knowledgeman-service", fallback = KnowledgemanServiceHystrix.class)
|
|
|
+public interface KnowledgemanServiceClient {
|
|
|
+
|
|
|
+}
|