zhangxu
2022-12-14 8c51032933d201b0c7aedbde0af6e5ff52db329d
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);
}