项目列表报名人数查询不正确修改

This commit is contained in:
dxc
2021-04-15 10:32:30 +08:00
parent 4485408a76
commit 1e7a4eb332

View File

@ -1048,7 +1048,7 @@ public class ProjectRecordServiceImpl extends BaseServiceImpl<ProjectRecordMappe
for (ProjectRecordVO vo:recordVOList) {
ProjectSectionVO sectionVO = sectionMap.get(vo.getId());
if(null != sectionVO){
Long applyCount = (null == resultMap.get(sectionVO.getId()))? resultMap.get(sectionVO.getId()) : 0L;
Long applyCount = (null != resultMap.get(sectionVO.getId()))? resultMap.get(sectionVO.getId()) : 0L;
sectionVO.setApplyCount(applyCount);
sectionVO.setLinkPercentage(getLinkPercentage(sectionVO.getBusinessModule(),vo));
}