| | |
| | | return R.ok(userTaskMsgVoList); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * @description |
| | | * @author jqs |
| | | * @date 2023/8/10 23:01 |
| | | * @param cityCodes |
| | | * @return R<List<Long>> |
| | | */ |
| | | @PostMapping("/listShopByCityCode") |
| | | public R<List<Shop>> listShopByCityCode(@RequestBody List<String> cityCodes){ |
| | | List<Shop> shopIdList = shopService.listShopByCityCode(cityCodes); |
| | | return R.ok(shopIdList); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * @description |
| | | * @author jqs |
| | | * @date 2023/8/10 23:01 |
| | | * @return R<List<Long>> |
| | | */ |
| | | @PostMapping("/listShopByIds") |
| | | public R<List<Shop>> listShopByIds(@RequestBody List<String> ids){ |
| | | List<Shop> shopIdList = shopService.listByIds(ids); |
| | | return R.ok(shopIdList); |
| | | } |
| | | } |