1.数据完整性列表调整

2.区域电能质量评估列表调整
3.调整监测点台账列表顺序
4.删除灿能电力字样
5.调整loge和ico图标
6.调整概览首页在线率和完整率数据
7.调整设备树的查询方式
This commit is contained in:
wr
2024-04-11 15:20:41 +08:00
parent 438c21880f
commit 051d4fc85a
43 changed files with 1169 additions and 208 deletions

View File

@@ -108,7 +108,8 @@
a.line_index lineIndex,
mod(a.line_index,10) as lineNum,
a.name as lineName,
nvl(b.POWER_SUBSTATION_NAME,e.name)||'_'||sv.NAME||'_'||a.name as electricityQualityName,
e.name||'_'||sv.NAME||'_'||a.name as electricityQualityName,
sv.NAME as busBarName,
a.dev_index devIndex,
a.status lineStatus,
b.pttype ptType,
@@ -194,10 +195,14 @@
<if test="status!=null">
and d.status = #{status}
</if>
<if test="powerId!=null">
and b.POWERID = #{powerId}
</if>
<choose>
<when test="type == 0"> and b.MONITOR_ID is not null and b.MONITOR_ID != ' '</when>
<when test="type == 1"> and (b.MONITOR_ID IS NULL or b.MONITOR_ID IN (' '))</when>
</choose>
order by province,gdName,devName,lineNum,subName,busBarName,lineName
</select>
<select id="getDeptsLineIndex" resultType="java.lang.Integer"