Compare commits

...

2 Commits

Author SHA1 Message Date
xy
0088ac746d Merge remote-tracking branch 'origin/master' 2025-12-03 16:03:46 +08:00
xy
88bf4b215b 方法微调 2025-12-03 16:01:33 +08:00

View File

@@ -986,8 +986,9 @@ public class InfluxQueryWrapper {
throw new RuntimeException("查询数值集合为空,请校验!"); throw new RuntimeException("查询数值集合为空,请校验!");
} }
for (Object obj : diffContent) { for (Object obj : diffContent) {
String fieldName = prefix + obj + suffix; String fieldName = prefix + obj;
this.select(fieldName,fieldName); String resultName = suffix + obj;
this.select(fieldName,resultName);
} }
return this; return this;
} }