| | |
| | | R wxPayFlower(@RequestBody OrderPayDTO orderPayDTO); |
| | | |
| | | /** |
| | | * 统计查询订单数量 |
| | | * @param deliveryType |
| | | * @return |
| | | */ |
| | | @GetMapping("/shopFlower/selectCountByDeliveryType") |
| | | R selectCountByDeliveryType(Integer deliveryType); |
| | | |
| | | /** |
| | | * 获取社区动态置顶banner |
| | | * @param communityId 社区id |
| | | * */ |
| | | @PostMapping("/easyphoto/getUserRewardsNew") |
| | | R getUserRewardsNew(@RequestParam("userId") Long userId, @RequestParam("communityId") Long communityId); |
| | | |
| | | /** |
| | | * 统计查询订单数量 |
| | | * @param deliveryType |
| | | * @return |
| | | */ |
| | | @GetMapping("/shopFlower/selectCountByDeliveryType") |
| | | R selectCountByDeliveryType(Integer deliveryType,Long storeId); |
| | | |
| | | /** |
| | | * 查询我的店铺各类统计数据 |
| | | * @param storeId |
| | | * @return |
| | | */ |
| | | @GetMapping("/shopFlower/selectCountByStoreId") |
| | | R selectCountByStoreId(Long storeId); |
| | | |
| | | |
| | | /** |
| | | * 创建退款订单 |
| | | * @param comShopFlowerRefundOrderDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/shopFlower/createRefundOrder") |
| | | R createRefundOrder(@RequestBody ComShopFlowerRefundOrderDTO comShopFlowerRefundOrderDTO); |
| | | |
| | | /** |
| | | * 分页查询 |
| | | * @param pageComOrderRefundDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/shopFlower/pageRefundOrder") |
| | | R pageRefundOrder(@RequestBody PageComOrderRefundDTO pageComOrderRefundDTO); |
| | | |
| | | /** |
| | | * 修改退款订单 |
| | | * @param comShopFlowerRefundOrderDTO |
| | | * @return |
| | | */ |
| | | @PostMapping("/shopFlower/updateRefundOrder") |
| | | R updateRefundOrder(@RequestBody ComShopFlowerRefundOrderDTO comShopFlowerRefundOrderDTO); |
| | | |
| | | |
| | | /** |
| | | * 商家后台-退款申请统计 |
| | | * @param storeId |
| | | * @return |
| | | */ |
| | | @GetMapping("/shopFlower/selectCountGroupStatus") |
| | | R selectCountGroupStatus(Long storeId); |
| | | } |