| | |
| | | |
| | | /** |
| | | * 订单详情 |
| | | * 转换用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); |
| | | |
| | | /** |
| | | * 订单列表 |
| | | */ |
| | | @PostMapping(value = "/order/deta/all") |
| | | Result getOrderDetasAll(@RequestBody OrderDto orderDto); |
| | | |
| | | /** |
| | | * 订单列表 |
| | | */ |
| | | @PostMapping(value = "/getOrderCustomerConfirm") |
| | | Result getOrderCustomerConfirm(@RequestBody OrderDto orderDto); |
| | | } |