|
@@ -73,6 +73,6 @@ public class QueryLogServiceImpl implements QueryLogService {
|
|
|
public List<EsRelationLog> getRelationLogList(String well_common_name) {
|
|
|
EsRelationLogExample example = new EsRelationLogExample();
|
|
|
example.or().andWell_common_nameEqualTo(well_common_name);
|
|
|
- return esRelationLogMapper.selectByExample(example).stream().skip(10).collect(Collectors.toList());
|
|
|
+ return esRelationLogMapper.selectByExample(example).stream().limit(10).collect(Collectors.toList());
|
|
|
}
|
|
|
}
|