| | |
| | | @PostMapping("/shop/getShopByPhone") |
| | | R<Shop> getShopByPhone(@RequestParam("phone") String phone); |
| | | |
| | | @PostMapping("/getShopByUserIds") |
| | | @PostMapping("/shop/getShopByUserIds") |
| | | R<List<Shop>> getShopByUserIds(@RequestBody List<Long> userIds); |
| | | |
| | | @GetMapping("/getShopIdByName") |
| | | @GetMapping("/shop/getShopIdByName") |
| | | R<Set<Integer>> getShopIdByName(String shopName); |
| | | |
| | | @PostMapping("/shop-balance-statement/getList") |
| | | R<List<ShopBalanceStatement>> getShopBalanceStatementList(@RequestBody ShopBalanceStatement shopBalanceStatement); |
| | | |
| | | /** |
| | | * 编辑门店 |
| | | * @param shop |
| | | */ |
| | | @PostMapping("/shop/updateShop") |
| | | void updateShop(Shop shop); |
| | | } |