feat: 基础数据查询监测状态优化

This commit is contained in:
tangwei 2026-05-19 14:21:42 +08:00
parent cc80318c23
commit 8a793b3cae
2 changed files with 4 additions and 5 deletions

View File

@ -57,8 +57,8 @@ public class SdWtMonitorServiceImpl implements SdWtMonitorService {
.append("wt.STTP AS sttpCode, ") .append("wt.STTP AS sttpCode, ")
.append("wt.STCD AS stcd, ") .append("wt.STCD AS stcd, ")
.append("wt.RSTCD AS rstcd, ") .append("wt.RSTCD AS rstcd, ")
.append("CAST(NULL AS VARCHAR2(200)) AS stCode, ") .append("NULL AS stCode, ")
.append("CAST(NULL AS VARCHAR2(200)) AS stName, ") .append("NULL AS stName, ")
.append("eng.DVTP AS dvtp, ") .append("eng.DVTP AS dvtp, ")
.append("hb.ORDER_INDEX AS baseStepSort, ") .append("hb.ORDER_INDEX AS baseStepSort, ")
.append("eng.HBRVCD AS hbrvcd, ") .append("eng.HBRVCD AS hbrvcd, ")

View File

@ -116,8 +116,7 @@ public class QgcQueryWrapperUtil {
} }
if (columnName != null && columnName.equals(fieldName)) { if (columnName != null && columnName.equals(fieldName)) {
if (StrUtil.isEmpty((CharSequence) value)) { if (value == null || (value instanceof String && StrUtil.isEmpty((String) value))) {
StringBuffer var9 = null;
return; return;
} }