| | |
| | | @PostMapping("/getShopHFTXSubMchId") |
| | | public R<ShopAuthenticationHftxVo> getShopHFTXSubMchId(@RequestBody Long shopId){ |
| | | ShopAuthenticationHftx shopAuthenticationHftx = shopAuthenticationHftxService.getOne(new QueryWrapper<ShopAuthenticationHftx>() |
| | | .eq("isDelete", 0).eq("shop_id", shopId)); |
| | | .eq("is_delete", 0).eq("shop_id", shopId)); |
| | | ShopAuthenticationHftxVo vo = new ShopAuthenticationHftxVo(); |
| | | BeanUtils.copyProperties(shopAuthenticationHftx, vo); |
| | | return R.ok(vo, ""); |
| | |
| | | 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); |
| | | } |
| | | } |