huliguo
7 天以前 adac148db7cefc6848933989d407b1827749a5a6
pt-admin/src/main/java/com/ruoyi/web/controller/errand/CommunityController.java
@@ -43,8 +43,8 @@
    @GetMapping("/getTotalCommunityList")
    @PreAuthorize("@ss.hasPermi('system:index:statistics')")
    @ApiOperation(value = "获取所有小区列表(开通的小区总数取列表大小吧)",tags = "系统后台-首页")
    public R<List<CommunityListVO>> getTotalCommunityList() {
        return communityService.getTotalCommunityList();
    public R<List<CommunityListVO>> getTotalCommunityList(@RequestParam(value = "name",required = false) String name) {
        return communityService.getTotalCommunityList(name);
    }
    /**