Commit 6692eec8 authored by ZWT's avatar ZWT

feat(能源管理系统): 测试问题修复

1.修改基础信息配置--组织机构管理模块,通过组织机构ID查询下级组织机构及线路列表接口,增加查询线路类型逻辑,添加返回值,修改接口文档并完成接口冒烟测试;
2.修改基础信息配置--基础间开配置模块,设为基础制度接口,添加限制条件,不能优化结束日期在当天之前的数据;
3.修改间开制度管理--长期/中短期间开优化功能,添加通过线路ID查询线路下储能设备列表接口,修改离网型制度优化逻辑;
4.修改基础信息配置--基础间开配置模块设为基础间开/重新校准接口,修改离网型制度优化逻辑;
5.修改间开制度管理--长期/中短期/短期间开优化功能,相关井口记录表新增启动顺序字段,修改优化功能代码逻辑,添加启动顺序,相关详情接口增加按照启动顺序排序功能;

BREAKING CHANGE: 无

Closes 无

[skip ci]
parent 9ef63547
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
JOIN space_optimize_long_period p ON d.id = p.institution_id JOIN space_optimize_long_period p ON d.id = p.institution_id
WHERE p.is_deleted = 1 WHERE p.is_deleted = 1
AND p.line_id = #{lineId} AND p.line_id = #{lineId}
ORDER BY p.optimize_deadline DESC ORDER BY p.create_time DESC
</select> </select>
<insert id="batchInsertList" parameterType="list"> <insert id="batchInsertList" parameterType="list">
......
...@@ -60,6 +60,6 @@ ...@@ -60,6 +60,6 @@
JOIN space_optimize_mid_period p ON d.id = p.institution_id JOIN space_optimize_mid_period p ON d.id = p.institution_id
WHERE p.is_deleted = 1 WHERE p.is_deleted = 1
AND p.line_id = #{lineId} AND p.line_id = #{lineId}
ORDER BY p.optimize_deadline DESC ORDER BY p.create_time DESC
</select> </select>
</mapper> </mapper>
\ No newline at end of file
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