|
@@ -74,13 +74,13 @@ public class AnalysisNewService {
|
|
|
calendar.add(Calendar.DAY_OF_MONTH, 1);
|
|
|
Date endDate = calendar.getTime();
|
|
|
|
|
|
- List<ProEconAnalysisSubtableBottom> stringList = new ArrayList<>();
|
|
|
+ List<ProEconAnalysisSubtableBottom> Listbat = new ArrayList<>();
|
|
|
for (ProBasicPowerstation wp : CacheContext.wpls) {
|
|
|
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
List<ProBasicMeterPoint> meterPoints = proBasicMeterPointService.getBaseMapper().selectList(null);
|
|
@@ -116,15 +116,17 @@ public class AnalysisNewService {
|
|
|
vo.setStopCodeModify(temp2);
|
|
|
vo.setDayValue((temp2 - temp1) * magnification);
|
|
|
vo.setDayValueModify((temp2 - temp1) * magnification);
|
|
|
- stringList.add(vo);
|
|
|
- proEconAnalysisSubtableBottomService.batchAdd(stringList);
|
|
|
+ Listbat.add(vo);
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
+ proEconAnalysisSubtableBottomService.batchAdd(Listbat);
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
|
|
|
|