| | |
| | | /** |
| | | * 统计查询订单数量 |
| | | * @param deliveryType |
| | | * @param storeId |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | @GetMapping("/shopFlower/selectCountByDeliveryType") |
| | | R selectCountByDeliveryType(@RequestParam("deliveryType") Integer deliveryType,@RequestParam("storeId") Long storeId); |
| | | R selectCountByDeliveryType(@RequestParam("deliveryType") Integer deliveryType,@RequestParam("userId") Long userId); |
| | | |
| | | /** |
| | | * 查询我的店铺各类统计数据 |
| | | * @param storeId |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | @GetMapping("/shopFlower/selectCountByStoreId") |
| | | R selectCountByStoreId(Long storeId); |
| | | @GetMapping("/shopFlower/selectCountByUserId") |
| | | R selectCountByUserId(@RequestParam("userId") Long userId); |
| | | |
| | | |
| | | /** |