From f14bfd47670e57d1d28d006464cb8ba576c8a49c Mon Sep 17 00:00:00 2001 From: liurunyu <lry9898@163.com> Date: 星期四, 22 五月 2025 10:26:08 +0800 Subject: [PATCH] 基于测试服务器修改配置文件 --- pms-parent/pms-global/src/main/resources/mapper/BaPrivilegeMapper.xml | 29 +++++++++++++++++------------ 1 files changed, 17 insertions(+), 12 deletions(-) diff --git a/pms-parent/pms-global/src/main/resources/mapper/BaPrivilegeMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/BaPrivilegeMapper.xml index 7fd878d..803f50a 100644 --- a/pms-parent/pms-global/src/main/resources/mapper/BaPrivilegeMapper.xml +++ b/pms-parent/pms-global/src/main/resources/mapper/BaPrivilegeMapper.xml @@ -46,8 +46,8 @@ </if> </select> - <select id="selectPrivilegeByRoleId" resultType="Integer"> - select p.num + <select id="selectPrivilegeByRoleId" resultType="Long"> + select p.id from ba_privilege p inner join ba_role_privilege rp on p.id = rp.privilege_id <if test="roleId != null"> @@ -78,16 +78,16 @@ <if test="id != null"> id, </if> - <if test="num != null"> + <if test="num != null and num !=''"> num, </if> - <if test="name != null"> + <if test="name != null and name !=''"> `name`, </if> <if test="type != null"> `type`, </if> - <if test="typeName != null"> + <if test="typeName!= null and typeName !=''"> type_name, </if> </trim> @@ -98,13 +98,13 @@ <if test="num != null"> #{num}, </if> - <if test="name != null"> + <if test="name != null and name !=''"> #{name}, </if> - <if test="type != null"> + <if test="type != null and type !=''"> #{type}, </if> - <if test="typeName != null"> + <if test="typeName!= null and typeName !=''"> #{typeName}, </if> </trim> @@ -113,16 +113,16 @@ <!--@mbg.generated--> update ba_privilege <set> - <if test="num != null"> + <if test="num != null and num !=''"> num = #{num}, </if> - <if test="name != null"> + <if test="name != null and name !=''"> `name` = #{name}, </if> - <if test="type != null"> + <if test="type != null and type !=''"> `type` = #{type}, </if> - <if test="typeName != null"> + <if test="typeName!= null and typeName !=''"> type_name = #{typeName}, </if> </set> @@ -144,6 +144,11 @@ where id = #{id} </delete> + <delete id="deleteAll"> + <!--@mbg.generated--> + delete from ba_privilege + </delete> + <select id="selectByIds" parameterType="arraylist" resultMap="BaseResultMap"> select <include refid="Base_Column_List" /> -- Gitblit v1.8.0