rentaiming
2024-05-20 7b5ba67f22df3388108789e65997b5e10bd76ff5
1
2
3
4
5
6
7
8
9
10
package com.ruoyi.system.api.feignClient;
 
import com.ruoyi.common.core.constant.ServiceNameConstants;
import com.ruoyi.system.api.factory.PromotionFallbackFactory;
import org.springframework.cloud.openfeign.FeignClient;
 
@FeignClient(contextId = "promotionClient", value = ServiceNameConstants.RUOYI_PROMOTION, fallbackFactory = PromotionFallbackFactory.class)
public interface PromotionClient {
 
}