|
|
@ -177,8 +177,8 @@ public class PartyMemberLeadServiceImpl implements PartyMemberLeadService { |
|
|
|
Integer totalOrganizationCount = screenPartyBranchDataDao.selectTotalOrganizationCount(ModuleConstant.KEY_BRANCH_CATEGORY_VOLUNTARY_SERVICE,ModuleConstant.PARAM_BRANCH_DATA_TYPE_ORGAN,volunteerServiceFormDTO.getAgencyId(),bottomMonthId); |
|
|
|
//总参与人数
|
|
|
|
Integer totalJoinUserCount = screenPartyBranchDataDao.selectTotalOrganizationCount(ModuleConstant.KEY_BRANCH_CATEGORY_VOLUNTARY_SERVICE,ModuleConstant.PARAM_BRANCH_DATA_TYPE_JOIN,volunteerServiceFormDTO.getAgencyId(),bottomMonthId); |
|
|
|
result.setTotalOrganizationCount(totalOrganizationCount); |
|
|
|
result.setTotalJoinUserCount(totalJoinUserCount); |
|
|
|
result.setTotalOrganizationCount(null == totalOrganizationCount ? NumConstant.ZERO : totalOrganizationCount); |
|
|
|
result.setTotalJoinUserCount(null == totalJoinUserCount ? NumConstant.ZERO : totalJoinUserCount); |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|