| | |
| | | private String lcGirdId; |
| | | @ApiModelProperty(value = "关联市平台网格") |
| | | private String lcGirdName; |
| | | @ApiModelProperty(value = "网格所属社区id") |
| | | private Long gridCommunityId; |
| | | } |
| | |
| | | * @return 网格员列表 |
| | | */ |
| | | @PostMapping("/member/list") |
| | | public R getGridMemberLists(@RequestParam("communityId") Long communityId){ |
| | | public R getGridMemberLists(@RequestParam(value = "communityId",required = false) Long communityId){ |
| | | return eventGridDataService.getGridMemberLists(communityId); |
| | | } |
| | | |
| | |
| | | egd.data, |
| | | egd.create_at, |
| | | egd.create_by, |
| | | egd.grid_community_id, |
| | | (select lc_grid_name from lc_compare_code where local_grid_id = egd.id) as lcGirdName, |
| | | (select local_grid_id from lc_compare_code where local_grid_id = egd.id) as lcGirdId, |
| | | (select id from lc_compare_code where local_grid_id = egd.id) as lcGirdId, |
| | | ca.`name` AS communityName |
| | | FROM |
| | | event_grid_data AS egd |