| | |
| | | import javax.annotation.Resource; |
| | | |
| | | |
| | | import cn.hutool.core.collection.CollectionUtil; |
| | | import com.alibaba.fastjson.JSON; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.panzhihua.common.model.dtos.community.building.BuildingDto; |
| | | import com.panzhihua.common.model.dtos.community.large.AreaStreetDetail; |
| | | import com.panzhihua.common.model.dtos.community.large.AreaStreetDetailResp; |
| | | import com.panzhihua.common.model.dtos.community.large.SumAreaStreetResp; |
| | | import com.panzhihua.common.model.dtos.partybuilding.QryReportResp; |
| | | import com.panzhihua.common.model.vos.StreetVO; |
| | | import com.panzhihua.common.model.vos.area.StreetAndBuildVO; |
| | | import com.panzhihua.common.model.vos.community.bigscreen.ScreenStatics; |
| | |
| | | List<Long> ids = doList.stream().map(ComActDO::getCommunityId).collect(Collectors.toList()); |
| | | |
| | | AreaStreetDetail result = new AreaStreetDetail(); |
| | | if(CollectionUtil.isNotEmpty(ids)){ |
| | | //查询 街道相关信息 |
| | | AreaStreetDetailResp village = comActDAO.selectVillage(ids,type); |
| | | result.setAreaStreetDetailResp(village); |
| | | //查询 人口相关数据 |
| | | EventPopulationSpecialStatisticsVO eventResult = comActDAO.selectEvent(ids); |
| | | result.setEventPopulationVO(eventResult); |
| | | } |
| | | return result; |
| | | } |
| | | |
| | | |
| | | @Override |
| | | public List<QryReportResp> qryReport(String yearTime) { |
| | | List<QryReportResp> result = comActDAO.qryReport(yearTime); |
| | | return result; |
| | | } |
| | | } |