| | |
| | | |
| | | @RestController |
| | | @RequestMapping(value = "/app/community") |
| | | @Api(value = "小区信息", tags = "小区信息操作控制器") |
| | | @Slf4j |
| | | public class CommunityController { |
| | | @Autowired |
| | |
| | | @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); |
| | | } |
| | | |
| | | /** |