zhouxiang
2022-11-29 a69e6b6ce63d88ee7db4c7686a5f4ca3f0f94754
phis-feign/src/main/java/com/hz/his/feign/service/phis/SOrderService.java
@@ -21,9 +21,22 @@
    /**
     * 订单详情
     * 转换用OrderDetailDt
     */
    @PostMapping(value = "/order/detail")
    Result orderDetail(@RequestParam("orderId") String orderId);
    /**
     * 根据商品id查询订单数量
     */
    @PostMapping(value = "/order/numByGoodsId")
    Result queryOrderNumByGoodsId(@RequestParam("goodsId") String goodsId);
    /**
     * 根据活动id查询订单数量
     */
    @PostMapping(value = "/order/numByActivityId")
    Result queryOrderNumByActivityId(@RequestParam("activityId") String activityId);
}