DeviceFaultInfoFeign.java 450 B

12345678910111213141516171819
  1. package com.xy.feign;
  2. import com.xy.service.DeviceFaultInfoService;
  3. import com.xy.FeignInterceptor;
  4. import com.xy.consts.ServiceConsts;
  5. import org.springframework.cloud.openfeign.FeignClient;
  6. /**
  7. * <p>
  8. * 设备故障信息 feign
  9. * </p>
  10. *
  11. * @author 谭斌
  12. * @since 2024-01-08
  13. */
  14. @FeignClient(value = ServiceConsts.SERVICE_NAME, configuration = FeignInterceptor.class)
  15. public interface DeviceFaultInfoFeign extends DeviceFaultInfoService {
  16. }