|
@@ -295,45 +295,48 @@ public class AgcDeviateService {
|
|
|
* @param pageSize
|
|
|
* @return
|
|
|
*/
|
|
|
- public List<PowerLossesDTO> getAgcxd(long startTs, long endTs, int pageNum, int pageSize) {
|
|
|
+ public Page<PowerLossesDTO> getAgcxd(long startTs, long endTs,int pageNum, int pageSize) {
|
|
|
|
|
|
- // 将时间戳转换为LocalDateTime
|
|
|
LocalDateTime startDateTime = LocalDateTime.ofInstant(Instant.ofEpochMilli(startTs), ZoneId.systemDefault());
|
|
|
LocalDateTime endDateTime = LocalDateTime.ofInstant(Instant.ofEpochMilli(endTs), ZoneId.systemDefault());
|
|
|
Page<PowerLosses> page = new Page<>(pageNum, pageSize);
|
|
|
IPage<PowerLosses> list = powerLossService.pageList(page, startDateTime, endDateTime);
|
|
|
- list.setTotal(list.getRecords().size());
|
|
|
- List<PowerLosses> List = list.getRecords();
|
|
|
- List<PowerLossesDTO> dtos = new ArrayList<>();
|
|
|
+ List<PowerLosses> powerLosses = powerLossService.pageTotalList(startDateTime, endDateTime);
|
|
|
+
|
|
|
|
|
|
- DecimalFormat df = new DecimalFormat("0.0000000"); // 创建一个保留8位小数的 DecimalFormat 实例
|
|
|
+ // 使用dto列表替换原始记录列表
|
|
|
+ List<PowerLossesDTO> dtos = new ArrayList<>();
|
|
|
+ DecimalFormat df = new DecimalFormat("0.0000000");
|
|
|
+ DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS");
|
|
|
|
|
|
- for (PowerLosses pl : List) {
|
|
|
+ for (PowerLosses pl : list.getRecords()) {
|
|
|
PowerLossesDTO dto = new PowerLossesDTO();
|
|
|
dto.setId(pl.getId());
|
|
|
-
|
|
|
- // 使用DateTimeFormatter格式化日期时间
|
|
|
- DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.SSS");
|
|
|
dto.setStartTime(pl.getStartTime().format(formatter));
|
|
|
dto.setEndTime(pl.getEndTime().format(formatter));
|
|
|
|
|
|
try {
|
|
|
- double xddl = Double.parseDouble(pl.getXdss()); // 将字符串转换为double
|
|
|
- double xddlDivided = xddl / 10000; // 进行除法运算
|
|
|
- String xd = df.format(xddlDivided); // 使用DecimalFormat格式化结果
|
|
|
- dto.setXdss(xd); // 设置格式化后的值
|
|
|
+ double xddl = Double.parseDouble(pl.getXdss());
|
|
|
+ double xddlDivided = xddl / 10000;
|
|
|
+ String xd = df.format(xddlDivided);
|
|
|
+ dto.setXdss(xd);
|
|
|
} catch (NumberFormatException e) {
|
|
|
- // 处理无法解析为double的情况
|
|
|
- dto.setXdss("0.0000000"); // 假设默认值为0.0000000,与DecimalFormat的格式一致
|
|
|
+ dto.setXdss("0.0000000");
|
|
|
}
|
|
|
|
|
|
dto.setRecordDate(pl.getRecordDate());
|
|
|
dtos.add(dto);
|
|
|
}
|
|
|
|
|
|
- return dtos;
|
|
|
+ // 创建一个新的IPage对象并设置dtos为记录
|
|
|
+ Page<PowerLossesDTO> dtoPage = new Page<>(pageNum, pageSize);
|
|
|
+ dtoPage.setRecords(dtos);
|
|
|
+ dtoPage.setTotal(powerLosses.size());
|
|
|
+
|
|
|
+ return dtoPage;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
public Map<String, List<SpeedPowerAnalysis>> getWindturbineData(long startTs, long endTs, String windturbineId, int interval) throws Exception {
|
|
|
|
|
|
//切换数据库
|