| | |
| | | @Resource |
| | | private CommunityService communityService; |
| | | |
| | | @ApiOperation(value = "分页查询店铺" , response = ComShopStoreVO.class) |
| | | @ApiOperation(value = "分页查询店铺" , response = PageShopStoreVO.class) |
| | | @PostMapping("pageshopstore") |
| | | public R pageShopStore(@RequestBody PageComShopStoreDTO comShopStoreDTO) { |
| | | return communityService.pageShopStore(comShopStoreDTO); |
| | | } |
| | | |
| | | @ApiOperation(value = "查询店铺详情" , response = ComShopStoreVO.class) |
| | | @ApiOperation(value = "查询店铺详情" , response = PageShopStoreVO.class) |
| | | @PostMapping("shopstoredetail") |
| | | public R shopStoreDetail(@RequestBody PageComShopStoreDTO comShopStoreDTO) { |
| | | if(comShopStoreDTO == null || comShopStoreDTO.getStoreId() == null){ |