ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/ShopController.java
@@ -825,7 +825,7 @@ @GetMapping("/getShopStatistics") public R<Map<String, BigDecimal> > getShopStatistics(@RequestParam("shopId") Integer shopId){ LambdaQueryWrapper<Shop> queryWrapper = new LambdaQueryWrapper<Shop>().eq(Shop::getDelFlag, 0).eq(Shop::getStatus, 1); if(null != shopId){ if(null != shopId && 0 != shopId){ queryWrapper.eq(Shop::getId, shopId); } List<Shop> shopList = shopService.list(queryWrapper);