From 660b4acc5d963ad9428263d11293952d7af27157 Mon Sep 17 00:00:00 2001 From: tangwei Date: Tue, 14 Jul 2026 11:46:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=9B=BE=E4=BE=8B=E6=96=B9=E6=B3=95?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../qgc_sys/mapLayer/controller/MapLegendController.java | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/main/java/com/yfd/platform/qgc_sys/mapLayer/controller/MapLegendController.java b/backend/src/main/java/com/yfd/platform/qgc_sys/mapLayer/controller/MapLegendController.java index 9c2b5010..cd6945ae 100644 --- a/backend/src/main/java/com/yfd/platform/qgc_sys/mapLayer/controller/MapLegendController.java +++ b/backend/src/main/java/com/yfd/platform/qgc_sys/mapLayer/controller/MapLegendController.java @@ -62,6 +62,7 @@ public class MapLegendController { Page page = DataSourceRequestUtil.getPage(dataSourceRequest); Page resultPage; wrapper.eq("IS_DELETED", 0); + wrapper.orderByDesc("ORDER_INDEX"); if (page != null) { resultPage = mapLegendService.page(page, wrapper); } else {