fwq
2022-11-08 350c9e309f58745f544e7ce13650d2b8d9d2006f
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);
}