jiangqs
2023-05-03 e7ee3ad759d1dc390de11c536504a78c17dde848
1
2
3
4
5
6
7
8
9
package com.ruoyi.system.api;
 
import com.ruoyi.common.core.constant.ServiceNameConstants;
import com.ruoyi.system.api.factory.RemoteUserFallbackFactory;
import org.springframework.cloud.openfeign.FeignClient;
 
@FeignClient(contextId = "remoteShopService", value = ServiceNameConstants.SHOP_SERVICE, fallbackFactory = RemoteUserFallbackFactory.class)
public interface RemoteShopService {
}