|
|
@ -402,6 +402,10 @@ public class IcEventServiceImpl extends BaseServiceImpl<IcEventDao, IcEventEntit |
|
|
|
|
|
|
|
ProcessStatusRatioResultDTO r = new ProcessStatusRatioResultDTO(); |
|
|
|
|
|
|
|
if (CollectionUtils.isEmpty(m)) { |
|
|
|
return r; |
|
|
|
} |
|
|
|
|
|
|
|
BigDecimal processingCount = new BigDecimal(0); |
|
|
|
BigDecimal closedCount = new BigDecimal(0); |
|
|
|
; |
|
|
@ -591,6 +595,9 @@ public class IcEventServiceImpl extends BaseServiceImpl<IcEventDao, IcEventEntit |
|
|
|
"【事件研判分析】查找家属失败"); |
|
|
|
|
|
|
|
ArrayList<IcEventYpAnalysisResultDTO.Dependent> dependents = new ArrayList<>(); |
|
|
|
if (CollectionUtils.isEmpty(dependents)) { |
|
|
|
return dependents; |
|
|
|
} |
|
|
|
for (HouseUserDTO u : familyInfo.getHouseUserList()) { |
|
|
|
dependents.add(new IcEventYpAnalysisResultDTO.Dependent(u.getIcResiUserId(), u.getIcUserName())); |
|
|
|
} |
|
|
|