fwq
2023-04-27 2f0c3449080a3ce7308a948455a4b2370c4a4e6e
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
38
39
40
41
42
43
44
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 org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
 
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);
 
    /**修改上下架*/
    @RequestMapping(value = "/updateUp")
    Result updateUp(@RequestBody(required = false) GoodsSkuDto goodsSkuDto);
 
    /**分类列表*/
    @RequestMapping(value = "/goods/sku/type/select/list")
    Result goodsSkuTypeList(@RequestBody(required = false) GoodsTypeDto goodsTypeDto);
}