Commit d6bd0fc0 authored by ZWT's avatar ZWT

feat(吉林演示): 松原

1.排查并修复各时段间开优化功能执行异常导致未执行间开优化问题;
2.排查并修复15天间开优化功能执行后,优化结果时间段展示错乱问题;
3.排查并修复光伏功率预测展示功能,实际功率未展示问题;
4.排查并修复天气数据获取服务,数据处理后入库缺少数据问题;

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent cbbfc34d
...@@ -28,7 +28,7 @@ public class ThirdWellAvgActivePowerCloudServiceImpl implements IThirdWellAvgAct ...@@ -28,7 +28,7 @@ public class ThirdWellAvgActivePowerCloudServiceImpl implements IThirdWellAvgAct
ThirdWellAvgActivePowerMapper mapper = context.getBean(ThirdWellAvgActivePowerMapper.class); ThirdWellAvgActivePowerMapper mapper = context.getBean(ThirdWellAvgActivePowerMapper.class);
List<ThirdWellAvgActivePowerEnt> list = mapper.selectList(new QueryWrapper<ThirdWellAvgActivePowerEnt>() List<ThirdWellAvgActivePowerEnt> list = mapper.selectList(new QueryWrapper<ThirdWellAvgActivePowerEnt>()
.select("WELL_NUMBER", "INPUT_TIME", "AVG_ACTIVE_POWER") .select("WELL_NUMBER", "INPUT_TIME", "AVG_ACTIVE_POWER")
.ge("INPUT_TIME", DateUtil.offsetHour(DateUtil.date(), 4)) .ge("INPUT_TIME", DateUtil.offsetHour(DateUtil.date(), -6))
); );
return XListResult.success(XCopyUtils.copyNewList(list, GetThirdWellAvgActivePowerOutput.class)); return XListResult.success(XCopyUtils.copyNewList(list, GetThirdWellAvgActivePowerOutput.class));
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment