package com.hx.phiappt.feign;
|
|
import com.hx.phiappt.dto.gold.ParameterDto;
|
import com.hx.resultTool.Result;
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
/**
|
* 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀
|
*/
|
@FeignClient(name="warehouse-service", path = "/warehouse",contextId = "warehouse-stock")
|
public interface WUpdateService {
|
|
|
/**
|
* 更新门店仓库
|
* */
|
@PostMapping(value = "/update/shopWareHouse")
|
Result updateShopWarehouse(@RequestBody ParameterDto parameterDto);
|
|
/**
|
* 更新商品信息
|
* */
|
@PostMapping(value = "/update/consumables")
|
Result updateConsumables(@RequestBody ParameterDto parameterDto);
|
|
/**
|
* 更新商品库存
|
* */
|
@PostMapping(value = "/update/stock")
|
Result updateConsumablesStock(@RequestBody ParameterDto parameterDto);
|
|
}
|