|
@@ -0,0 +1,18 @@
|
|
|
+package com.xy.feign;
|
|
|
+
|
|
|
+import com.xy.FeignInterceptor;
|
|
|
+import com.xy.consts.ServiceConsts;
|
|
|
+import com.xy.service.DeviceRecordsService;
|
|
|
+import org.springframework.cloud.openfeign.FeignClient;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ *
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author hechunping
|
|
|
+ * @since 2023/3/2
|
|
|
+ */
|
|
|
+@FeignClient(value = ServiceConsts.SERVICE_NAME, configuration = FeignInterceptor.class)
|
|
|
+public interface DeviceRecordsFeign extends DeviceRecordsService {
|
|
|
+}
|