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.TGoods;
|
import com.ruoyi.other.api.factory.GoodsFallbackFactory;
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.PathVariable;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import java.util.List;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2024/8/16 13:47
|
*/
|
@FeignClient(contextId = "GoodsClient", value = ServiceNameConstants.OTHER_SERVICE, fallbackFactory = GoodsFallbackFactory.class)
|
public interface GoodsClient {
|
|
/**
|
* 根据id获取商品信息
|
* @param id
|
* @return
|
*/
|
@PostMapping("/t-goods/getGoodsById/{id}")
|
R<TGoods> getGoodsById(@PathVariable("id") Integer id);
|
/**
|
* 远程调用 根据商品名称查询商品ids
|
* @param name
|
* @return
|
*/
|
@PostMapping("/t-goods/getGoodsIdsByName/{name}")
|
public R<List<Integer>> getGoodsIdsByName(@PathVariable("name")String name);
|
|
|
/**
|
* 修改商品
|
* @param goods
|
* @return
|
*/
|
@PostMapping("/t-goods/updateGoods")
|
R updateGoods(@RequestBody TGoods goods);
|
}
|