Parcourir la source

首页问题修改

wangb il y a 1 mois
Parent
commit
da99f12990

+ 7 - 4
generationXK-service/src/main/java/com/gyee/generation/service/WindPowerInfo1Service.java

@@ -1506,15 +1506,18 @@ public class WindPowerInfo1Service {
 
     public void writeReportHistory2(Date date) throws Exception {
 //        String[] dateTime = {"2024-12-13 01:00:00", "2024-12-13 05:00:00", "2024-12-13 09:00:00","2024-12-13 13:00:00", "2024-12-13 17:00:00", "2024-12-13 21:00:00"};
-        String[] dateTime = {"2025-01-21 01:00:00", "2025-01-21 05:00:00", "2025-01-21 09:00:00","2025-01-21 13:00:00", "2025-01-21 17:00:00", "2025-01-21 21:00:00"};
+        String[] dateTime = {"2025-01-24 01:00:00", "2025-01-24 05:00:00", "2025-01-24 09:00:00","2025-01-24 13:00:00", "2025-01-24 17:00:00", "2025-01-24 21:00:00"};
         SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
         DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
-        String[] split = repInfo2.split(",");
-        List<String> ls = new ArrayList<>(Arrays.asList(split));
+//        String[] split = repInfo2.split(",");
+//        List<String> ls = new ArrayList<>(Arrays.asList(split));
+        List<String> ls = new ArrayList<>();
+        ls.add("区域集控.惠安风场.升压站.110kV宋四风场线测控.Q1");
+        ls.add("区域集控.惠安风场.升压站.110kV宋四风场线测控.UAB1");
         for (String s : dateTime) {
             Date date1 = simpleDateFormat.parse(s);
             long timestamp = date1.getTime();
-            for (long i = timestamp; i < 1738748311000L; i += 86400000) {
+            for (long i = timestamp; i < 1740453311000L; i += 86400000) {
             List<StationInfoHour> shs = new ArrayList<>();
             for (String l : ls) {
                 Map<String, PointData2> historySection = adapter.getHistorySection(goldenUri(), l, timestamp);

+ 1 - 1
runeconomy-xk/src/main/java/com/gyee/runeconomy/service/homepage/EconomyPointHomePageService.java

@@ -2027,7 +2027,7 @@ public class EconomyPointHomePageService {
      * 缓存月、年发电量
      */
     public void calFdl() {
-        if (null != lastCalDate || LocalDate.now().equals(lastCalDate) || !yfdlCal.isEmpty()) {
+        if (null != lastCalDate || LocalDate.now().equals(lastCalDate)) {
             return;
         }
         LocalDate yesterday = LocalDate.now().atStartOfDay().toLocalDate();