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.STCD AS stcd, ")
.append("wt.RSTCD AS rstcd, ")
.append("CAST(NULL AS VARCHAR2(200)) AS stCode, ")
.append("CAST(NULL AS VARCHAR2(200)) AS stName, ")
.append("NULL AS stCode, ")
.append("NULL AS stName, ")
.append("eng.DVTP AS dvtp, ")
.append("hb.ORDER_INDEX AS baseStepSort, ")
.append("eng.HBRVCD AS hbrvcd, ")

View File

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