package com.artfess.base.feign; import com.artfess.base.conf.FeignConfig; import com.artfess.base.feign.impl.BizDeviceFeignServiceFactory; import org.apache.http.client.ClientProtocolException; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import java.io.IOException; /** * @author css */ @FeignClient(name = "biz-device", fallbackFactory = BizDeviceFeignServiceFactory.class, configuration = FeignConfig.class, primary = false) public interface BizDeviceFeignService { }