| | |
| | | @PostMapping("/shop/getShopIdByName") |
| | | R<Set<Integer>> getShopIdByName(@RequestParam("shopName") String shopName); |
| | | |
| | | @PostMapping("/shop/getManagerByManagerName") |
| | | R<Set<Long>> getManagerByManagerName(@RequestParam("managerName") String managerName); |
| | | |
| | | @PostMapping("/shop-balance-statement/getList") |
| | | R<List<ShopBalanceStatement>> getShopBalanceStatementList(@RequestBody ShopBalanceStatement shopBalanceStatement); |
| | | |
| | |
| | | |
| | | |
| | | @GetMapping("/shop/getShopStatistics") |
| | | public R<Map<String, BigDecimal>> getShopStatistics(); |
| | | public R<Map<String, BigDecimal>> getShopStatistics(@RequestParam("shopId") Integer shopId); |
| | | |
| | | /** |
| | | * 获取指定用户的服务商 |
| | | */ |
| | | @GetMapping("/shop/getServiceProvider") |
| | | R<Shop> getServiceProvider(@RequestParam("appUserId") Long appUserId); |
| | | |
| | | /** |
| | | * 获取指定用户的高级服务商 |
| | | */ |
| | | @GetMapping("/shop/getSuperiorServiceProvider") |
| | | public R<Shop> getSuperiorServiceProvider(@RequestParam("appUserId") Long appUserId); |
| | | |
| | | |
| | | } |