luodangjia
2024-08-07 980d0d6571f4b50b51502ee60094a3dbdf1fb2f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.other.api.feignClient;
 
import com.ruoyi.common.core.constant.ServiceNameConstants;
import com.ruoyi.other.api.factory.GoodsFallbackFactory;
import org.springframework.cloud.openfeign.FeignClient;
 
/**
 * 商品服务
 * @author ruoyi
 */
@FeignClient(contextId = "GoodsClient", value = ServiceNameConstants.CONTRACT_SERVICE, fallbackFactory = GoodsFallbackFactory.class)
public interface GoodsClient {
 
 
}