Commit 57c3998c authored by ZWT's avatar ZWT

feat(零碳): 长庆

1.添加easy excel配置,增加转换器,增加全局excel导出样式,增加场站下拉选解析器;
2.开发光伏电站模板导出接口,增加模板导出类,并完成接口冒烟测试及接口文档;
3.间开制度管理模块新增设为基础制度开关接口,添加线上接口文档并完成接口冒烟测试;
4.开发井口配置模板导出接口,增加模板导出类,并完成接口冒烟测试及接口文档;
5.开发第三方有功功率历史数据导入接口,增加模板配置类,添加线上接口文档并完成接口冒烟测试;
6.开发给长庆使用的获取第三方认证token接口,验证获取token后是否能正常跳转指定页面,创建长庆用演示用户及角色;
7.开发柴发设备配置模板导出接口,增加模板导出类,并完成接口冒烟测试及接口文档;
8.开发储能设备配置模板导出接口,增加模板导出类,并完成接口冒烟测试及接口文档;

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent 21a443cf
...@@ -324,7 +324,11 @@ public class ExcelService { ...@@ -324,7 +324,11 @@ public class ExcelService {
BaseDieselGeneratorView build = BaseDieselGeneratorView.builder() BaseDieselGeneratorView build = BaseDieselGeneratorView.builder()
.ouName(ent.getOuName()) .ouName(ent.getOuName())
.ouId(ouMap.get(ent.getOuName())) .ouId(ouMap.get(ent.getOuName()))
.deviceName(ent.getDeviceName())
.makerNumber(ent.getMakerNumber())
.unitTypeName(ent.getUnitTypeName())
.normalPower(new BigDecimal(ent.getNormalPower()))
.standbyPower(new BigDecimal(ent.getStandbyPower()))
.build(); .build();
BaseUtils.createBaseModelDefault(build, context.getSession(PpsUserSession.class)); BaseUtils.createBaseModelDefault(build, context.getSession(PpsUserSession.class));
insertList.add(build); insertList.add(build);
......
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