1.添加登录模块

This commit is contained in:
2024-08-09 10:47:10 +08:00
parent ef03549ebb
commit 2520d496a0
4 changed files with 14 additions and 1 deletions

View File

@@ -78,7 +78,7 @@ public class DataTest extends BaseJunitTest {
System.out.println(2222);
System.out.println(2222);
List<DataV> list = resultMapper.toPOJO(sqlResult, DataV.class);
Map<String, List<DataV>> stringListMap = list.stream().collect(Collectors.groupingBy(obj -> obj.getPhasicType().concat(StrPool.UNDERLINE).concat(obj.getValueType())));
Map<String, List<DataV>> stringListMap = list.stream().collect(Collectors.groupingBy(obj -> obj.getPhaseType().concat(StrPool.UNDERLINE).concat(obj.getValueType())));
influxQueryWrapper = new InfluxQueryWrapper(DataInHarmRateV.class);
influxQueryWrapper.between(DataInHarmRateV::getTime, startTime, endTime).regular(DataInHarmRateV::getLineId, lineList);