| | |
| | | @PostMapping("/order/getAppUserByShoppingShop") |
| | | R<Set<Long>> getAppUserByShoppingShop(@RequestParam("shopId") Integer shopId); |
| | | |
| | | /** |
| | | * 获取指定门店的核销订单 |
| | | */ |
| | | @GetMapping("/order/getRedeemedOrdersByShop") |
| | | R<List<Order>> getRedeemedOrdersByShop(@RequestParam("shopId") Integer shopId); |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | | * 根据id获取订单详情 |
| | |
| | | */ |
| | | @PostMapping("/order/getOrderCountByAppUserId") |
| | | R<Long> getOrderCountByAppUserId(@RequestParam("id") Long appUserId); |
| | | |
| | | |
| | | /** |
| | | * 查询给定用户在给定门店核销的订单 |
| | | * @param shopId |
| | | * @param appUserId |
| | | * @return |
| | | */ |
| | | @PostMapping("/order/getOrderByAppUserIdsAndWriteOffShop") |
| | | R<List<Order>> getOrderByAppUserIdsAndWriteOffShop(@RequestParam("shopId") Integer shopId, @RequestParam("appUserId") Set<Long> appUserId); |
| | | } |