wangrenhuang
2023-02-27 c3ad9af0a5e0e3ccb43dcf056c9c029c0a056095
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
26
27
28
29
30
31
32
33
34
35
36
37
package com.hz.crm.feign;
 
import com.hx.resultTool.Result;
import com.hz.crm.dto.GoodsSkuDto;
import com.hz.crm.dto.GoodsTypeDto;
import com.hz.crm.dto.coupon.CouponCheckDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
 
import javax.servlet.http.HttpServletRequest;
 
/**
 * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
 */
@FeignClient(name="crm-platform-service",path = "/crm-platform",contextId = "crm-goods-sku")
public interface FGoodsSkuService {
 
    /**sku列表*/
    @PostMapping(value = "/goods/sku/list")
    Result list( @RequestBody(required = false) GoodsSkuDto goodsSkuDto);
 
    /**sku分类列表*/
    @PostMapping(value = "/goods/sku/type/list")
    Result typeList( @RequestBody(required = false) GoodsSkuDto goodsSkuDto);
 
    /**分类列表*/
    @PostMapping(value = "/goods/sku/type/list/all")
    Result typeListAll( @RequestBody(required = false) GoodsTypeDto goodsTypeDto);
 
    /**优惠券校验接口*/
    @PostMapping(value = "/goods/sku/check/coupon")
    Result goodsCheckType( @RequestBody(required = false) CouponCheckDto couponCheckDto);
 
    /**修改上下架*/
    Result updateUp(@RequestBody(required = false) GoodsSkuDto goodsSkuDto);
}