接口 PriceRpcService
@FeignClient(name="yst-dms2-ss",
path="/rpc/template/template/price/open-api")
@Validated
public interface PriceRpcService
价格RPC服务接口
-
字段概要
字段 -
方法概要
修饰符和类型方法说明com.elitesland.ystdms.sys.dto.ApiResult<List<ProductPriceCompareRespDTO>> compareProductPrice(List<ProductPriceQueryDTO> queryDTOList) 比较商品价格 比较渠道保底价和渠道供货价(支持省、市维度)com.elitesland.ystdms.sys.dto.ApiResult<List<ChannelMinPriceRespDTO>> queryChannelMinPrice(List<ChannelMinPriceQueryDTO> queryDTOList) 查询渠道保底价 根据商品编码、二级渠道编码和生效日期查询渠道保底价com.elitesland.ystdms.sys.dto.ApiResult<List<ProductPriceRespDTO>> queryProductPrice(List<ProductPriceQueryDTO> queryDTOList) 查询商品价格 根据渠道编码、商品编码、生效日期、省、市查询渠道保底价和渠道供货价
-
字段详细资料
-
URI
- 另请参阅:
-
-
方法详细资料
-
queryProductPrice
@PostMapping("/queryProductPrice") com.elitesland.ystdms.sys.dto.ApiResult<List<ProductPriceRespDTO>> queryProductPrice(@RequestBody List<ProductPriceQueryDTO> queryDTOList) 查询商品价格 根据渠道编码、商品编码、生效日期、省、市查询渠道保底价和渠道供货价- 参数:
queryDTOList- 查询参数列表- 返回:
- 商品价格信息列表
-
compareProductPrice
@PostMapping("/compareProductPrice") com.elitesland.ystdms.sys.dto.ApiResult<List<ProductPriceCompareRespDTO>> compareProductPrice(@RequestBody List<ProductPriceQueryDTO> queryDTOList) 比较商品价格 比较渠道保底价和渠道供货价(支持省、市维度)- 参数:
queryDTOList- 查询参数列表- 返回:
- 价格比较结果列表
-
queryChannelMinPrice
@PostMapping("/queryChannelMinPrice") com.elitesland.ystdms.sys.dto.ApiResult<List<ChannelMinPriceRespDTO>> queryChannelMinPrice(@RequestBody List<ChannelMinPriceQueryDTO> queryDTOList) 查询渠道保底价 根据商品编码、二级渠道编码和生效日期查询渠道保底价- 参数:
queryDTOList- 查询参数列表- 返回:
- 渠道保底价信息列表
-