zhangxu
2022-09-23 3331e358f12dd29b15eb94e6f57d0d11ccd8182c
phis-feign/src/main/java/com/hz/his/feign/service/phis/SOrderService.java
@@ -25,5 +25,17 @@
    @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);
}