From df3192f4e98377526d098928a9910c03e836c630 Mon Sep 17 00:00:00 2001
From: shiyj1101 <1098226878@qq.com>
Date: 星期五, 06 八月 2021 22:02:36 +0800
Subject: [PATCH] 优化戴拿
---
service-report/src/main/java/com/java110/report/smo/impl/ReportFeeYearCollectionInnerServiceSMOImpl.java | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 56 insertions(+), 1 deletions(-)
diff --git a/service-report/src/main/java/com/java110/report/smo/impl/ReportFeeYearCollectionInnerServiceSMOImpl.java b/service-report/src/main/java/com/java110/report/smo/impl/ReportFeeYearCollectionInnerServiceSMOImpl.java
old mode 100644
new mode 100755
index aa55ddb..c47cc07
--- a/service-report/src/main/java/com/java110/report/smo/impl/ReportFeeYearCollectionInnerServiceSMOImpl.java
+++ b/service-report/src/main/java/com/java110/report/smo/impl/ReportFeeYearCollectionInnerServiceSMOImpl.java
@@ -16,6 +16,7 @@
import java.util.ArrayList;
import java.util.List;
+import java.util.Map;
/**
* @ClassName FloorInnerServiceSMOImpl
@@ -63,15 +64,68 @@
//鏍¢獙鏄惁浼犱簡 鍒嗛〉淇℃伅
int page = reportFeeYearCollectionDto.getPage();
+ List<ReportFeeYearCollectionDto> reportFeeYearCollections = null;
+
+ //涓嶅垎椤电洿鎺ユ煡鍏ㄩ噺鏁版嵁
+ if (reportFeeYearCollectionDto.getRow() > 10000) {
+ List<Map> reportFeeYearCollectionMaps =
+ reportFeeYearCollectionServiceDaoImpl.getReportFeeYearCollectionInfos(BeanConvertUtil.beanCovertMap(reportFeeYearCollectionDto));
+
+ reportFeeYearCollections = doCreateReportFeeYearCollections(reportFeeYearCollectionMaps);
+ return reportFeeYearCollections;
+ }
if (page != PageDto.DEFAULT_PAGE) {
reportFeeYearCollectionDto.setPage((page - 1) * reportFeeYearCollectionDto.getRow());
}
- List<ReportFeeYearCollectionDto> reportFeeYearCollections = BeanConvertUtil.covertBeanList(reportFeeYearCollectionServiceDaoImpl.getReportFeeYearCollectionInfo(BeanConvertUtil.beanCovertMap(reportFeeYearCollectionDto)), ReportFeeYearCollectionDto.class);
+ reportFeeYearCollections = BeanConvertUtil.covertBeanList(reportFeeYearCollectionServiceDaoImpl.getReportFeeYearCollectionInfo(BeanConvertUtil.beanCovertMap(reportFeeYearCollectionDto)), ReportFeeYearCollectionDto.class);
freshDetails(reportFeeYearCollections);
return reportFeeYearCollections;
+ }
+
+ /**
+ * 鍒涘缓瀵硅薄
+ *
+ * @param reportFeeYearCollectionMaps
+ * @return
+ */
+ private List<ReportFeeYearCollectionDto> doCreateReportFeeYearCollections(List<Map> reportFeeYearCollectionMaps) {
+ List<ReportFeeYearCollectionDto> reportFeeYearCollectionDtos = new ArrayList<>();
+ ReportFeeYearCollectionDto reportFeeYearCollectionDto = null;
+
+ for (Map reportFeeYearCollectionMap : reportFeeYearCollectionMaps) {
+ if (!hasReportFeeYearCollectionDto(reportFeeYearCollectionMap, reportFeeYearCollectionDtos)) {
+ reportFeeYearCollectionDto = BeanConvertUtil.covertBean(reportFeeYearCollectionMap, ReportFeeYearCollectionDto.class);
+ reportFeeYearCollectionDtos.add(reportFeeYearCollectionDto);
+ }
+ }
+ List<ReportFeeYearCollectionDetailDto> reportFeeYearCollectionDetailDtos = null;
+ ReportFeeYearCollectionDetailDto reportFeeYearCollectionDetailDto = null;
+ for (ReportFeeYearCollectionDto tmpReportFeeYearCollectionDto : reportFeeYearCollectionDtos) {
+ reportFeeYearCollectionDetailDtos = new ArrayList<>();
+ for (Map reportFeeYearCollectionMap : reportFeeYearCollectionMaps) {
+ if (tmpReportFeeYearCollectionDto.getCollectionId().equals(reportFeeYearCollectionMap.get("collectionId"))) {
+ reportFeeYearCollectionDetailDto = BeanConvertUtil.covertBean(reportFeeYearCollectionMap, ReportFeeYearCollectionDetailDto.class);
+ reportFeeYearCollectionDetailDtos.add(reportFeeYearCollectionDetailDto);
+ }
+ }
+ tmpReportFeeYearCollectionDto.setReportFeeYearCollectionDetailDtos(reportFeeYearCollectionDetailDtos);
+ }
+
+ return reportFeeYearCollectionDtos;
+ }
+
+ private boolean hasReportFeeYearCollectionDto(Map reportFeeYearCollectionMap, List<ReportFeeYearCollectionDto> reportFeeYearCollectionDtos) {
+
+ for (ReportFeeYearCollectionDto reportFeeYearCollectionDto : reportFeeYearCollectionDtos) {
+ if (reportFeeYearCollectionDto.getCollectionId().equals(reportFeeYearCollectionMap.get("collectionId"))) {
+ return true;
+ }
+ }
+
+ return false;
}
private void freshDetails(List<ReportFeeYearCollectionDto> reportFeeYearCollections) {
@@ -90,6 +144,7 @@
= reportFeeYearCollectionDetailInnerServiceSMOImpl.queryReportFeeYearCollectionDetails(reportFeeYearCollectionDetailDto);
List<ReportFeeYearCollectionDetailDto> tmpReportFeeYearCollectionDetailDtos = null;
+ //寰幆 涓昏〃
for (ReportFeeYearCollectionDto reportFeeYearCollectionDto : reportFeeYearCollections) {
tmpReportFeeYearCollectionDetailDtos = new ArrayList<>();
for (ReportFeeYearCollectionDetailDto tmpReportFeeYearCollectionDetailDto : reportFeeYearCollectionDetailDtos) {
--
Gitblit v1.8.0