|
@@ -1,9 +1,12 @@
|
|
|
-package com.gyee.generation.service;//package com.gyee.generation.service;
|
|
|
+package com.gyee.generation.service;
|
|
|
|
|
|
+import cn.hutool.core.date.DateTime;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.gyee.common.model.PointData;
|
|
|
import com.gyee.common.model.StringUtils;
|
|
|
+import com.gyee.generation.feign.AdapterApi;
|
|
|
import com.gyee.generation.init.CacheContext;
|
|
|
+import com.gyee.generation.model.PointData2;
|
|
|
import com.gyee.generation.model.auto.*;
|
|
|
import com.gyee.generation.model.vo.CompanyType;
|
|
|
import com.gyee.generation.model.vo.Location;
|
|
@@ -12,6 +15,7 @@ import com.gyee.generation.service.auto.*;
|
|
|
import com.gyee.generation.util.DateUtils;
|
|
|
import com.gyee.generation.util.realtimesource.IEdosUtil;
|
|
|
import com.gyee.generation.util.statisticcs.Initial;
|
|
|
+import com.xxl.job.core.util.DateUtil;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
@@ -21,6 +25,7 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import java.math.BigDecimal;
|
|
|
+import java.net.URI;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.time.*;
|
|
|
import java.time.format.DateTimeFormatter;
|
|
@@ -74,6 +79,14 @@ public class WindPowerInfo1Service {
|
|
|
@Resource
|
|
|
private IProEconEquipmentInfoJsService iProEconEquipmentInfoJsService;
|
|
|
|
|
|
+ @Resource
|
|
|
+ private AdapterApi adapter;
|
|
|
+
|
|
|
+
|
|
|
+ public URI goldenUri() {
|
|
|
+ return URI.create("http://10.220.1.8:8011/ts");
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 计算区域日信息
|
|
@@ -1366,12 +1379,49 @@ public class WindPowerInfo1Service {
|
|
|
}
|
|
|
try {
|
|
|
boolean b = stationInfoHourService.saveBatch(shs);
|
|
|
+ System.out.println("成功");
|
|
|
} catch (Exception e) {
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
+ public void writeReportHistory(Date date) throws Exception {
|
|
|
+ String[] dateTime = {"2024-12-13 08:00:00","2024-12-13 12:00:00", "2024-12-13 16:00:00", "2024-12-13 20:00:00"};
|
|
|
+ SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
+ DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
|
|
|
+ String[] split = repInfo1.split(",");
|
|
|
+ List<String> ls = new ArrayList<>(Arrays.asList(split));
|
|
|
+ for (String s : dateTime) {
|
|
|
+ Date date1 = simpleDateFormat.parse(s);
|
|
|
+ long timestamp = date1.getTime();
|
|
|
+ for (long i = timestamp; i < 1735033631000L; i += 86400000) {
|
|
|
+ List<StationInfoHour> shs = new ArrayList<>();
|
|
|
+ for (String l : ls) {
|
|
|
+ Map<String, PointData2> historySection = adapter.getHistorySection(goldenUri(), l, i);
|
|
|
+ if (null == historySection || historySection.isEmpty()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ StationInfoHour sh = new StationInfoHour();
|
|
|
+ sh.setRecordDate(LocalDateTime.ofInstant(Instant.ofEpochMilli(i),ZoneId.systemDefault()));
|
|
|
+ sh.setWpid("NX_FGS_HA_FDC_STA");
|
|
|
+ sh.setMeterId(l);
|
|
|
+ sh.setMeterName(l);
|
|
|
+ sh.setCode(BigDecimal.valueOf(historySection.get(l).getDoubleValue()));
|
|
|
+ sh.setCodeModify(BigDecimal.valueOf(historySection.get(l).getDoubleValue()));
|
|
|
+ shs.add(sh);
|
|
|
+
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ boolean b = stationInfoHourService.saveBatch(shs);
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
public void writeReport2(Date date) throws Exception {
|
|
|
String[] split = repInfo2.split(",");
|
|
|
List<String> ls = new ArrayList<>(Arrays.asList(split));
|
|
@@ -1404,6 +1454,42 @@ 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 15:00:00", "2024-12-13 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));
|
|
|
+ for (String s : dateTime) {
|
|
|
+ Date date1 = simpleDateFormat.parse(s);
|
|
|
+ long timestamp = date1.getTime();
|
|
|
+ for (long i = timestamp; i < 1735033631000L; i += 86400000) {
|
|
|
+ List<StationInfoHour> shs = new ArrayList<>();
|
|
|
+ for (String l : ls) {
|
|
|
+ Map<String, PointData2> historySection = adapter.getHistorySection(goldenUri(), l, i);
|
|
|
+ if (null == historySection || historySection.isEmpty()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ StationInfoHour sh = new StationInfoHour();
|
|
|
+ sh.setRecordDate(LocalDateTime.ofInstant(Instant.ofEpochMilli(i),ZoneId.systemDefault()));
|
|
|
+ sh.setWpid("NX_FGS_HA_FDC_STA");
|
|
|
+ sh.setMeterId(l);
|
|
|
+ sh.setMeterName(l);
|
|
|
+ sh.setCode(BigDecimal.valueOf(historySection.get(l).getDoubleValue()));
|
|
|
+ sh.setCodeModify(BigDecimal.valueOf(historySection.get(l).getDoubleValue()));
|
|
|
+ shs.add(sh);
|
|
|
+
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ boolean b = stationInfoHourService.saveBatch(shs);
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
public void writeReport3(Date date) throws Exception {
|
|
|
QueryWrapper<ProBaseBackfill> qw = new QueryWrapper<>();
|