Commit 2a98c0d7 authored by ZWT's avatar ZWT

feat(零碳): 长庆

1.系统管理模块,查询线路及组织机构树接口修改,增加查询逻辑,通过线路名称模糊查询树列表,完成接口冒烟测试并同步线上接口文档;
2.系统管理模块,查询光伏电站及组织机构树接口修改,增加查询逻辑,通过电站名称模糊查询树列表,完成接口冒烟测试并同步线上接口文档;
3.基础信息配置模块,新增市电峰谷导入模板下载接口,完成接口冒烟测试并同步线上接口文档;
4.基础信息配置模块,市电峰谷模板下载接口修改,增加多选月份导出配置数据逻辑,修改线上接口文档并完成接口冒烟测试;
5.基础信息配置模块,新增市电峰谷数据导入接口,增加导入数据校验逻辑,完成接口冒烟测试并添加线上接口文档;
6.基础间开配置模块,新增编辑制度模板导出接口,添加线上接口文档并完成接口冒烟测试;
7.基础间开配置模块,新增编制制度导入接口,添加线上接口文档并完成接口冒烟测试;

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent 913064af
......@@ -67,6 +67,8 @@ public class ExcelService {
@XApiGet
public XFileResult exportPhotovoltaicPlant(XContext context, QueryBasePhotovoltaicPlantInput input) {
List<QuerySysAreaOutput> provinceAndCityList = ServiceUtil.getProvinceAndCityList(context, "陕西", "甘肃");
input.setPage(0);
input.setLimit(1000);
//分页条件查询光伏电站列表
List<ExcelPhotovoltaicPlantTemplate> list;
List<QueryBasePhotovoltaicPlantOutput> items = context.getBean(BasePhotovoltaicPlantService.class)
......@@ -136,6 +138,8 @@ public class ExcelService {
@XText("井口配置导出")
@XApiGet
public XFileResult exportWellhead(XContext context, QueryBaseWellheadInput input) {
input.setPage(0);
input.setLimit(1000);
//分页条件查询井口列表
List<ExcelWellheadTemplate> list;
List<QueryBaseWellheadOutput> items = context.getBean(BaseWellheadService.class)
......@@ -181,6 +185,8 @@ public class ExcelService {
@XText("柴发设备配置导出")
@XApiGet
public XFileResult exportDieselGenerator(XContext context, QueryBaseDieselGeneratorInput input) {
input.setPage(0);
input.setLimit(1000);
//分页条件查询柴发设备列表
List<ExcelDieselGeneratorTemplate> list;
List<QueryBaseDieselGeneratorOutput> items = context.getBean(BaseDieselGeneratorService.class)
......@@ -227,6 +233,8 @@ public class ExcelService {
@XText("储能设备配置导出")
@XApiGet
public XFileResult exportEnergyStorageDevice(XContext context, QueryBaseEnergyStorageDeviceInput input) {
input.setPage(0);
input.setLimit(1000);
//分页条件查询储能设备列表
List<ExcelEnergyStorageDeviceTemplate> list;
List<QueryBaseEnergyStorageDeviceOutput> items = context.getBean(BaseEnergyStorageDeviceService.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