From 5fbbb0793c23010f4dc15d4dba96e4dee1509afd Mon Sep 17 00:00:00 2001
From: xiebin <123456>
Date: Tue, 20 Sep 2022 17:19:12 +0800
Subject: [PATCH] 维修管理表名称修改

---
 src/main/java/org/springblade/modules/system/mapper/DictBizMapper.xml |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/main/java/org/springblade/modules/system/mapper/DictBizMapper.xml b/src/main/java/org/springblade/modules/system/mapper/DictBizMapper.xml
index f6c85d6..c2e818f 100644
--- a/src/main/java/org/springblade/modules/system/mapper/DictBizMapper.xml
+++ b/src/main/java/org/springblade/modules/system/mapper/DictBizMapper.xml
@@ -38,14 +38,17 @@
 
     <select id="getList" resultMap="dictResultMap">
         select id, tenant_id, parent_id, code, dict_key, dict_value, sort, remark from blade_dict_biz where code = #{param1} and parent_id > 0 and is_sealed = 0 and is_deleted = 0
+        ORDER BY sort ASC
     </select>
 
     <select id="tree" resultMap="treeNodeResultMap">
         select id, parent_id, dict_value as title, id as "value", id as "key" from blade_dict_biz where is_deleted = 0
+        ORDER BY sort ASC
     </select>
 
     <select id="parentTree" resultMap="treeNodeResultMap">
         select id, parent_id, dict_value as title, id as "value", id as "key" from blade_dict_biz where is_deleted = 0 and parent_id = 0
+        ORDER BY sort ASC
     </select>
 
 </mapper>

--
Gitblit v1.9.3