forked from kidgrow-microservices-platform

侯瑞军
2020-04-10 6eb8cb8d7b18732394b0d0ee1fcea23173cfc9f3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.kidgrow.zuul.service.feign;
 
import com.kidgrow.common.constant.BaseConstants;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.stereotype.Component;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 *
 * @Description: <br>
 * @Project: <br>
 * @CreateDate: Created in 2020/2/4 14:49 <br>
 * @Author: <a href="4345453@kidgrow.com">liuke</a>
 */
@Component
@FeignClient(value = BaseConstants.BASE_SERVER)
public interface BaseAppServiceClient {
}