| | |
| | | * @return 社区列表 |
| | | */ |
| | | @GetMapping("/eventgrid/community/westList") |
| | | R getWestCommunityLists(@RequestParam("areaCode")String areaCode); |
| | | R getWestCommunityLists(@RequestParam(value = "areaCode",required = false)String areaCode); |
| | | |
| | | /** |
| | | * 综治app-小区列表 |
| | |
| | | * @return 社区列表 |
| | | */ |
| | | @GetMapping("/eventgrid/community/westList") |
| | | public R getWestCommunityLists(@RequestParam("areaCode")String areaCode) { |
| | | public R getWestCommunityLists(@RequestParam(value = "areaCode",required = false)String areaCode) { |
| | | return comActService.getWestCommunityLists(areaCode); |
| | | } |
| | | |