|
|
@@ -472,6 +472,10 @@ public class AssetService {
|
|
|
});
|
|
|
|
|
|
List<UserHistory> content = map.getContent();
|
|
|
+ for (int i = 0; i < content.size(); i++) {
|
|
|
+ UserHistory userHistory = content.get(i);
|
|
|
+ System.out.println("这是第"+i+"次循环: "+userHistory);
|
|
|
+ }
|
|
|
if (content!=null&&content.size()>0){
|
|
|
content.removeAll(Collections.singleton(null));
|
|
|
Pageable pageable = PageRequest.of(pageQuery.getPage() - 1, pageQuery.getSize());
|