|
|
|
@ -278,6 +278,7 @@ public class UserAnalysisServiceImpl extends BaseServiceImpl<UserAnalysisDao, Us |
|
|
|
int communityMemberCount = 0; |
|
|
|
int communityTopicCount = 0; |
|
|
|
int unAuthorizedCount = 0; |
|
|
|
int enterpriseCount = 0; |
|
|
|
|
|
|
|
for (GridOpeningResultDTO openingResult : gridOpeningResults) { |
|
|
|
residentCount += openingResult.getResidentCount(); |
|
|
|
@ -292,6 +293,7 @@ public class UserAnalysisServiceImpl extends BaseServiceImpl<UserAnalysisDao, Us |
|
|
|
communityCount += openingResult.getCommunityCount(); |
|
|
|
communityMemberCount += openingResult.getCommunityMemberCount(); |
|
|
|
communityTopicCount += openingResult.getCommunityTopicCount(); |
|
|
|
enterpriseCount += openingResult.getEnterpriseCount(); |
|
|
|
} |
|
|
|
|
|
|
|
result.setRegisterCount(residentCount + partyCount + unAuthorizedCount); |
|
|
|
@ -308,6 +310,7 @@ public class UserAnalysisServiceImpl extends BaseServiceImpl<UserAnalysisDao, Us |
|
|
|
result.setCommunityCount(communityCount); |
|
|
|
result.setCommunityMemberCount(communityMemberCount); |
|
|
|
result.setCommunityTopicCount(communityTopicCount); |
|
|
|
result.setEnterpriseCount(enterpriseCount); |
|
|
|
|
|
|
|
return result; |
|
|
|
} |
|
|
|
|