cmg
2024-05-07 949cfe8208afba15b5cb25ba8ca2691766f7d1dc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.hz.crm.feign.goods;
 
import com.hx.resultTool.Result;
import com.hz.crm.dto.GoodsSkuDto;
import com.hz.crm.vo.goods.GoodsTypeListVo;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
 
/**
 * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
 * @author CJH
 */
@FeignClient(name="crm-user",path = "/crm-platform",contextId = "crm-goods-type")
public interface FGoodsTypeService {
 
    /**
     * 获取商品类型列表
     * @param goodsTypeListVo 参数
     * @return data返回 GoodsType集合
     */
    @PostMapping(value = "/goods/sku/type/area/list")
    Result list( @RequestBody GoodsTypeListVo goodsTypeListVo);
 
}