diff --git a/attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/service/impl/WindowPerformServiceImpl.java b/attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/service/impl/WindowPerformServiceImpl.java index d7b08346dd5c394fd2f08af4bff0dd17a6c8fb26..e40a2b4bdd9dae8e98094ebf8a2365756242ca9a 100644 --- a/attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/service/impl/WindowPerformServiceImpl.java +++ b/attendance-performance-manager/src/main/java/com/mortals/xhx/module/window/service/impl/WindowPerformServiceImpl.java @@ -166,7 +166,7 @@ public class WindowPerformServiceImpl extends AbstractCRUDServiceImpl<WindowPerf allList.addAll(collect); } - allList = allList.stream().sorted(Comparator.comparing(WindowPerformAllVo::getFillDate)).collect(Collectors.toList()); + allList = allList.stream().sorted(Comparator.comparing(WindowPerformAllVo::getFillDate).reversed()).collect(Collectors.toList()); return Rest.ok(allList);