forked from luyan/epmet-cloud-lingshan
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
508 B
17 lines
508 B
5 years ago
|
package com.epmet.feign;
|
||
|
|
||
|
import org.springframework.cloud.openfeign.FeignClient;
|
||
|
|
||
|
import com.epmet.commons.tools.constant.ServiceConstant;
|
||
|
import com.epmet.feign.fallback.EpmetUserOpenFeignClientFallback;
|
||
|
|
||
|
/**
|
||
|
* 本服务对外开放的API,其他服务通过引用此client调用该服务
|
||
|
*
|
||
|
* @author yinzuomei@elink-cn.com
|
||
|
* @date 2020/6/4 13:09
|
||
|
*/
|
||
|
@FeignClient(name = ServiceConstant.EPMET_USER_SERVER, fallback = EpmetUserOpenFeignClientFallback.class)
|
||
|
public interface EpmetUserOpenFeignClient {
|
||
|
}
|