| | |
| | | * 订单支付回调参数 |
| | | */ |
| | | @PostMapping("/wxOrderPayNotify") |
| | | public void wxOrderPayNotify(@RequestBody WxPayNotifyOrderDTO wxPayNotifyOrderDTO) { |
| | | public void wxOrderPayNotifyFlower(@RequestBody WxPayNotifyOrderDTO wxPayNotifyOrderDTO) { |
| | | comShopFlowerOrderService.wxOrderPayNotify(wxPayNotifyOrderDTO); |
| | | } |
| | | |
| | |
| | | * @return 支付对象 |
| | | */ |
| | | @PostMapping("/wxPay") |
| | | public R wxPay(@RequestBody OrderPayDTO orderPayDTO) { |
| | | public R wxPayFlower(@RequestBody OrderPayDTO orderPayDTO) { |
| | | return comShopFlowerOrderService.wxPay(orderPayDTO); |
| | | } |
| | | |
| | | @GetMapping("/selectCountByDeliveryType") |
| | | public R selectCountByDeliveryType(Integer deliveryType){ |
| | | return comShopFlowerOrderService.selectCountByDeliveryType(deliveryType); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 统计用户订单数量 |