jiangqs
2023-04-30 8ebef43834385f027ebc27c85aa374c95fa76653
1
2
3
4
5
6
7
8
9
10
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 = "remoteOrderService", value = ServiceNameConstants.ORDER_SERVICE, fallbackFactory = RemoteUserFallbackFactory.class)
public interface RemoteOrderService {
 
}