package com.ruoyi.other.api.feignClient;
|
|
import com.ruoyi.common.core.constant.ServiceNameConstants;
|
import com.ruoyi.common.core.domain.R;
|
import com.ruoyi.other.api.domain.TVip;
|
import com.ruoyi.other.api.factory.VipFallbackFactory;
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
/**
|
* 会员服务
|
* @author ruoyi
|
*/
|
@FeignClient(contextId = "VipClient", value = ServiceNameConstants.ORDER_SERVICE, fallbackFactory = VipFallbackFactory.class)
|
public interface VipClient {
|
|
/**
|
* 获取最高抵扣、最低起步价,最高折扣的会员
|
* @param type 1=最高抵扣、2=最低起步价,3=最高折扣
|
* @return
|
*/
|
@PostMapping(value = "/vip/getVipInfoByType")
|
R<TVip> getVipInfoByType(@RequestParam("type") Integer type);
|
|
|
}
|