Commit 3971547b authored by ZWT's avatar ZWT

feat(吉林演示): 松原

1.基础信息配置模块创建风资源历史数据表和风资源预测数据表,同时生成对应代码;
2.修改天气数据获取处理定时任务,修改光伏预测数据插入逻辑,同时增加风资源数据插入逻辑,完成功能测试;

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent 078abd09
......@@ -71,6 +71,9 @@ public class BaseWindTurbineService {
//封装返回信息
GetBaseWindTurbineOutput output = XCopyUtils.copyNewObject(entity, GetBaseWindTurbineOutput.class);
output.setWindTowerList(XCopyUtils.copyNewList(towerEntList, BaseWindTowerInput.class));
//todo 后面加逻辑
output.setAreaName("吉林");
output.setAccuracy("66.6");
return XSingleResult.success(output);
}
......
......@@ -53,4 +53,10 @@ public class GetBaseWindTurbineOutput {
@XText("风电站关联测风塔列表")
private List<BaseWindTowerInput> windTowerList;
@XText("地区名称")
private String areaName;
@XText("准确率")
private String accuracy;
}
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