From ea1a62ba6484d6c6cb1ca67dcea938a95ba18fc6 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期一, 26 五月 2025 18:26:26 +0800 Subject: [PATCH] 新增加用户端接口 --- ruoyi-modules/ruoyi-system/src/main/resources/mapper/config/QuickEntryMapper.xml | 23 ++++++++++++----------- 1 files changed, 12 insertions(+), 11 deletions(-) diff --git a/ruoyi-modules/ruoyi-system/src/main/resources/mapper/config/QuickEntryMapper.xml b/ruoyi-modules/ruoyi-system/src/main/resources/mapper/config/QuickEntryMapper.xml index 788901d..262e19a 100644 --- a/ruoyi-modules/ruoyi-system/src/main/resources/mapper/config/QuickEntryMapper.xml +++ b/ruoyi-modules/ruoyi-system/src/main/resources/mapper/config/QuickEntryMapper.xml @@ -91,17 +91,18 @@ </delete> <select id="listQuickEntryVo" resultType="com.ruoyi.system.domain.vo.AppQuickEntryVo"> - SELECT - entry_id entryId, - entry_url entryUrl, - entry_name entryName, - link_type linkType, - target_type targetType, - link_url linkUrl, - jump_type jumpType, - jump_id jumpId - FROM t_quick_entry WHERE del_flag = 0 - ORDER BY entry_sort,create_time DESC + SELECT entry_id entryId, + entry_url entryUrl, + entry_name entryName, + link_type linkType, + appid, + target_type targetType, + link_url linkUrl, + jump_type jumpType, + jump_id jumpId + FROM t_quick_entry + WHERE del_flag = 0 + ORDER BY entry_sort, create_time DESC </select> <select id="pageMgtQuickEntry" resultType="com.ruoyi.system.domain.vo.MgtQuickEntryPageVo"> -- Gitblit v1.7.1