From 25e6a77fdca15feccadb9d4ccf5baf83e1bfd62a Mon Sep 17 00:00:00 2001 From: lsh <lsh@163.com> Date: 星期五, 18 四月 2025 14:04:25 +0800 Subject: [PATCH] * --- src/main/resources/mapper/RoleMapper.xml | 11 +---------- 1 files changed, 1 insertions(+), 10 deletions(-) diff --git a/src/main/resources/mapper/RoleMapper.xml b/src/main/resources/mapper/RoleMapper.xml index f346f81..5877bcc 100644 --- a/src/main/resources/mapper/RoleMapper.xml +++ b/src/main/resources/mapper/RoleMapper.xml @@ -12,15 +12,6 @@ </resultMap> - <sql id="batchSeq"> - <if test="id != null and id != 0"> - and a.ID = #{id} - </if> - <if test="name != null and name != ''"> - and a.NAME = #{name} - </if> - </sql> - <select id="selectRoleList" resultMap="BaseResultMap"> SELECT * FROM "SOURCE"."sys_role" WHERE 1=1 @@ -35,7 +26,7 @@ </select> <select id="selectRoleListTotal" resultType="Long"> - SELECT count(1) FROM "SOURCE"."wcs_api_config" + SELECT count(1) FROM "SOURCE"."sys_role" WHERE 1=1 <if test="leaderIdList != null and leaderIdList != ''"> and ID not in -- Gitblit v1.9.1