From 23f6c9865917c7b1d19457e17b8f4a0f83a1bc34 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 02 七月 2025 16:44:39 +0800 Subject: [PATCH] 0 --- se-system/src/main/resources/mapper/sys/RoleMenuAuthMapper.xml | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/se-system/src/main/resources/mapper/sys/RoleMenuAuthMapper.xml b/se-system/src/main/resources/mapper/sys/RoleMenuAuthMapper.xml index 78a6637..4159cb1 100644 --- a/se-system/src/main/resources/mapper/sys/RoleMenuAuthMapper.xml +++ b/se-system/src/main/resources/mapper/sys/RoleMenuAuthMapper.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> -<mapper namespace="com.lf.server.mapper.sys.RoleMenuAuthMapper"> +<mapper namespace="com.terra.system.mapper.sys.RoleMenuAuthMapper"> <select id="selectCount" resultType="java.lang.Integer"> select count(*) from lf.sys_role_menu_auth <where> @@ -10,7 +10,7 @@ </where> </select> - <select id="selectByPage" resultType="com.lf.server.entity.sys.RoleMenuAuthEntity"> + <select id="selectByPage" resultType="com.terra.system.entity.sys.RoleMenuAuthEntity"> select * from lf.sys_role_menu_auth <where> <if test="roleid != null"> @@ -34,7 +34,7 @@ </where> </select> - <select id="selectByPageForRole" resultType="com.lf.server.entity.sys.RoleMenuAuthEntity"> + <select id="selectByPageForRole" resultType="com.terra.system.entity.sys.RoleMenuAuthEntity"> select a.*,b.menuid,c.name from lf.sys_role_menu_auth a inner join lf.sys_menu_auth b on a.menu_auth_id = b.id inner join lf.sys_auth c on b.authid = c.id <where> 1 = 1 @@ -49,15 +49,15 @@ limit #{limit} offset #{offset} </select> - <select id="selectAll" resultType="com.lf.server.entity.sys.RoleMenuAuthEntity"> + <select id="selectAll" resultType="com.terra.system.entity.sys.RoleMenuAuthEntity"> select * from lf.sys_role_menu_auth order by id; </select> - <select id="selectById" resultType="com.lf.server.entity.sys.RoleMenuAuthEntity"> + <select id="selectById" resultType="com.terra.system.entity.sys.RoleMenuAuthEntity"> select * from lf.sys_role_menu_auth where id = #{id} </select> - <insert id="insert" parameterType="com.lf.server.entity.sys.RoleMenuAuthEntity"> + <insert id="insert" parameterType="com.terra.system.entity.sys.RoleMenuAuthEntity"> insert into lf.sys_role_menu_auth (roleid,menu_auth_id,create_user,create_time) values -- Gitblit v1.9.3