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 {
|
}
|