DeviceSimFeign.java 363 B

123456789101112131415161718
  1. package com.xy.feign;
  2. import com.xy.FeignInterceptor;
  3. import com.xy.consts.ServiceConsts;
  4. import org.springframework.cloud.openfeign.FeignClient;
  5. /**
  6. * <p>
  7. * 设备流量卡 feign
  8. * </p>
  9. *
  10. * @author lijin
  11. * @since 2023-10-16
  12. */
  13. @FeignClient(value = ServiceConsts.SERVICE_NAME, configuration = FeignInterceptor.class)
  14. public interface DeviceSimFeign {
  15. }