fix: 优化逻辑

This commit is contained in:
tangwei 2026-06-23 10:01:50 +08:00
parent 808953dc76
commit 75adb3836b

View File

@ -154,7 +154,7 @@ public class VdMonitorServiceImpl implements VdMonitorService {
.append("t.statusTm AS statusTm ") .append("t.statusTm AS statusTm ")
.append("FROM (") .append("FROM (")
.append(buildVdTreeCoreSql()) .append(buildVdTreeCoreSql())
.append(") t WHERE 1 = 1 "); .append(") t WHERE 1 = 1 AND t.sttpCode != 'VD_FPRD'");
if (StrUtil.isNotBlank(filterSql)) { if (StrUtil.isNotBlank(filterSql)) {
sql.append(" AND ").append(filterSql).append(" "); sql.append(" AND ").append(filterSql).append(" ");
} }