|
|
@@ -102,7 +102,10 @@ public class ParcelServiceImpl implements IParcelService {
|
|
|
|
|
|
List<ParcelStatisticsRes.DetailDTO> detailList = new ArrayList<>();
|
|
|
List<ParcelStatisticsRes.TdytDTO> tdytStatisticsList = new ArrayList<>();
|
|
|
+ Map<String,List<ParcelStatisticsRes.QlxzDTO>> qlxzStatisticsMap = new LinkedHashMap<>(); // 权利性质统计
|
|
|
List<ParcelStatisticsRes.QlxzDTO> qlxzStatisticsList = new ArrayList<>(); // 权利性质统计
|
|
|
+
|
|
|
+
|
|
|
List<ParcelStatisticsRes.QllxSuoyouquanDTO> qllxSuoyouquanStatisticsList= new ArrayList<>(); // 权利类型所有权统计
|
|
|
List<ParcelStatisticsRes.QllxShiyongquanDTO> qllxShiyongquanStatisticsList = new ArrayList<>(); // 权利类型使用权统计
|
|
|
|
|
|
@@ -163,19 +166,9 @@ public class ParcelServiceImpl implements IParcelService {
|
|
|
if(CollectionUtils.isNotEmpty(filterList)){
|
|
|
qlxzGroupedByYtMap.put(name, filterList);
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
});
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
//这里遍历map,然后进行统计数据;
|
|
|
if(MapUtils.isNotEmpty(qlxzGroupedByYtMap)){
|
|
|
for(Map.Entry<String, List<Zdjbxx>> entry : qlxzGroupedByYtMap.entrySet()){
|
|
|
@@ -196,13 +189,11 @@ public class ParcelServiceImpl implements IParcelService {
|
|
|
qlxzStatisticsList.add(qlxzDTO);
|
|
|
}
|
|
|
}
|
|
|
- res.setQlxzStatisticsList(qlxzStatisticsList);
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
|
|
|
+ qlxzStatisticsMap.put("gy",qlxzStatisticsList);
|
|
|
+ qlxzStatisticsMap.put("jt",qlxzStatisticsList);
|
|
|
+ qlxzStatisticsMap.put("wz",qlxzStatisticsList);
|
|
|
+ res.setQlxzStatisticsList(qlxzStatisticsMap);
|
|
|
|
|
|
//-------------------------------------------第四部分: 权利类型-所有权统计--------------------------------
|
|
|
Map<String,List<Zdjbxx>> qllxSuoYouGroupedByYtMap = new LinkedHashMap<>();
|