This commit is contained in:
shuo.wang
2025-06-09 14:30:02 +08:00
parent 7d88be8a1d
commit aa789e1e93
3 changed files with 4 additions and 3 deletions

View File

@@ -272,7 +272,7 @@ public class FranchiseReportServiceImpl implements FranchiseReportService {
log.info("数据为空");
return null;
}
franchiseReportDTOPageInfo.setList(list.stream().sorted(Comparator.comparing(ShopReportResponse::getBuildTime).reversed()).collect(Collectors.toList()));
franchiseReportDTOPageInfo.setList(list);
return franchiseReportDTOPageInfo;
}