|
@ -83,6 +83,8 @@ public class UserAnalysisServiceImpl extends BaseServiceImpl<UserAnalysisDao, Us |
|
|
List<GridOpeningResultDTO> registerDataList = baseDao.selectListReigistData(params); |
|
|
List<GridOpeningResultDTO> registerDataList = baseDao.selectListReigistData(params); |
|
|
// 未认证用户数
|
|
|
// 未认证用户数
|
|
|
//List<GridOpeningResultDTO> unAuthCountList = baseDao.selectListUnAuthorizedCountByGridId(params);
|
|
|
//List<GridOpeningResultDTO> unAuthCountList = baseDao.selectListUnAuthorizedCountByGridId(params);
|
|
|
|
|
|
// 企业代表数
|
|
|
|
|
|
List<GridOpeningResultDTO> enterpriseCountList = baseDao.selectExportEnterpriseCountByGridId(params); |
|
|
// 新闻数 通知数 议题数
|
|
|
// 新闻数 通知数 议题数
|
|
|
List<GridOpeningResultDTO> nneCountList = baseDao.selectListNewsNoticeEventCount(params); |
|
|
List<GridOpeningResultDTO> nneCountList = baseDao.selectListNewsNoticeEventCount(params); |
|
|
// 项目数,项目结案数,项目好评数
|
|
|
// 项目数,项目结案数,项目好评数
|
|
@ -112,6 +114,12 @@ public class UserAnalysisServiceImpl extends BaseServiceImpl<UserAnalysisDao, Us |
|
|
break; |
|
|
break; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
for (GridOpeningResultDTO enterpriseCountData : enterpriseCountList) { |
|
|
|
|
|
if (resultDto.getGridId().equals(enterpriseCountData.getGridId())) { |
|
|
|
|
|
resultDto.setEnterpriseCount(enterpriseCountData.getEnterpriseCount()); |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
for (GridOpeningResultDTO itemCountData : itemCountList) { |
|
|
for (GridOpeningResultDTO itemCountData : itemCountList) { |
|
|
if (resultDto.getGridId().equals(itemCountData.getGridId())) { |
|
|
if (resultDto.getGridId().equals(itemCountData.getGridId())) { |
|
|
resultDto.setItemCount(itemCountData.getItemCount()); |
|
|
resultDto.setItemCount(itemCountData.getItemCount()); |
|
|