|
@@ -29,11 +29,11 @@
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectMenuVo">
|
|
<sql id="selectMenuVo">
|
|
- select menu_id, menu_name, parent_id, order_num, path, component, `query`, is_frame, is_cache, menu_type, visible, status, ifnull(perms,'') as perms, icon, create_time
|
|
|
|
|
|
+ select menu_id, menu_name, parent_id, order_num, path, component, `query`, is_frame, is_cache, menu_type, visible, status, ifnull(perms,'') as perms, icon, create_time
|
|
from sys_menu
|
|
from sys_menu
|
|
- </sql>
|
|
|
|
-
|
|
|
|
- <select id="selectMenuList" parameterType="SysMenu" resultMap="SysMenuResult">
|
|
|
|
|
|
+ </sql>
|
|
|
|
+
|
|
|
|
+ <select id="selectMenuList" parameterType="SysMenu" resultMap="SysMenuResult">
|
|
SELECT
|
|
SELECT
|
|
m.menu_id,
|
|
m.menu_id,
|
|
m.menu_name,
|
|
m.menu_name,
|
|
@@ -57,44 +57,94 @@
|
|
LEFT JOIN sys_tenant t on t.tenant_id = u.tenant_id
|
|
LEFT JOIN sys_tenant t on t.tenant_id = u.tenant_id
|
|
where
|
|
where
|
|
m.menu_id not in (select DISTINCT menu_id from sys_tenant_menu)
|
|
m.menu_id not in (select DISTINCT menu_id from sys_tenant_menu)
|
|
- <if test="menuName != null and menuName != ''">
|
|
|
|
- AND m.menu_name like concat('%', #{menuName}, '%')
|
|
|
|
- </if>
|
|
|
|
- <if test="visible != null and visible != ''">
|
|
|
|
- AND m.visible = #{visible}
|
|
|
|
- </if>
|
|
|
|
- <if test="status != null and status != ''">
|
|
|
|
- AND m.status = #{status}
|
|
|
|
- </if>
|
|
|
|
- <if test="tenantName != null and tenantName != ''">
|
|
|
|
- AND t.tenant_name like concat('%', #{tenantName}, '%')
|
|
|
|
- </if>
|
|
|
|
|
|
+ <if test="menuName != null and menuName != ''">
|
|
|
|
+ AND m.menu_name like concat('%', #{menuName}, '%')
|
|
|
|
+ </if>
|
|
|
|
+ <if test="visible != null and visible != ''">
|
|
|
|
+ AND m.visible = #{visible}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="status != null and status != ''">
|
|
|
|
+ AND m.status = #{status}
|
|
|
|
+ </if>
|
|
|
|
+ <if test="tenantName != null and tenantName != ''">
|
|
|
|
+ AND t.tenant_name like concat('%', #{tenantName}, '%')
|
|
|
|
+ </if>
|
|
order by parent_id, order_num
|
|
order by parent_id, order_num
|
|
</select>
|
|
</select>
|
|
|
|
|
|
<select id="selectTenantMenuList" parameterType="Long" resultMap="SysMenuResult">
|
|
<select id="selectTenantMenuList" parameterType="Long" resultMap="SysMenuResult">
|
|
select m.menu_id, menu_name, parent_id, order_num, path, component, `query`, is_frame, is_cache, menu_type, visible, status, ifnull(perms,'') as perms, icon, create_time, tm.`tenant_id`
|
|
select m.menu_id, menu_name, parent_id, order_num, path, component, `query`, is_frame, is_cache, menu_type, visible, status, ifnull(perms,'') as perms, icon, create_time, tm.`tenant_id`
|
|
from sys_menu m
|
|
from sys_menu m
|
|
- left join sys_tenant_menu tm on tm.menu_id = m.menu_id
|
|
|
|
|
|
+ left join sys_tenant_menu tm on tm.menu_id = m.menu_id
|
|
where tm.tenant_id = #{tenantId}
|
|
where tm.tenant_id = #{tenantId}
|
|
|
|
+ and m.menu_name not in ('数据引擎','流程引擎','表单引擎','门户引擎')
|
|
|
|
+ and parent_id not in (select menu_id from sys_menu where menu_name in ("数据引擎","流程引擎","表单引擎","门户引擎"))
|
|
order by parent_id, order_num
|
|
order by parent_id, order_num
|
|
|
|
+
|
|
</select>
|
|
</select>
|
|
-
|
|
|
|
|
|
+
|
|
<select id="selectMenuTreeAll" resultMap="SysMenuResult">
|
|
<select id="selectMenuTreeAll" resultMap="SysMenuResult">
|
|
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.`query`, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.is_cache, m.menu_type, m.icon, m.order_num, m.create_time
|
|
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.`query`, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.is_cache, m.menu_type, m.icon, m.order_num, m.create_time
|
|
from sys_menu m where m.menu_type in ('M', 'C') and m.status = 0
|
|
from sys_menu m where m.menu_type in ('M', 'C') and m.status = 0
|
|
- and m.menu_id not in (select DISTINCT menu_id from sys_tenant_menu)
|
|
|
|
|
|
+ and m.menu_id not in (select DISTINCT menu_id from sys_tenant_menu)
|
|
order by m.parent_id, m.order_num
|
|
order by m.parent_id, m.order_num
|
|
</select>
|
|
</select>
|
|
|
|
|
|
<select id="selectTenantMenuTreeAll" parameterType="Long" resultMap="SysMenuResult">
|
|
<select id="selectTenantMenuTreeAll" parameterType="Long" resultMap="SysMenuResult">
|
|
- select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.`query`, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.is_cache, m.menu_type, m.icon, m.order_num, m.create_time
|
|
|
|
|
|
+ select distinct m.menu_id,
|
|
|
|
+ m.parent_id,
|
|
|
|
+ m.menu_name,
|
|
|
|
+ m.path,
|
|
|
|
+ m.component,
|
|
|
|
+ m.`query`,
|
|
|
|
+ m.visible,
|
|
|
|
+ m.status,
|
|
|
|
+ ifnull(m.perms, '') as perms,
|
|
|
|
+ m.is_frame,
|
|
|
|
+ m.is_cache,
|
|
|
|
+ m.menu_type,
|
|
|
|
+ m.icon,
|
|
|
|
+ m.order_num,
|
|
|
|
+ m.create_time
|
|
from sys_tenant_menu tm
|
|
from sys_tenant_menu tm
|
|
- left join sys_menu m on tm.menu_id = m.menu_id
|
|
|
|
- where m.menu_type in ('M', 'C') and m.status = 0 and tm.tenant_id = #{tenantId}
|
|
|
|
- order by m.parent_id, m.order_num
|
|
|
|
|
|
+ left join sys_menu m on
|
|
|
|
+ tm.menu_id = m.menu_id
|
|
|
|
+ where m.menu_type in ('M', 'C')
|
|
|
|
+ and m.status = 0
|
|
|
|
+ and tm.tenant_id = #{tenantId}
|
|
|
|
+ and m.menu_name in ('数据引擎', '流程引擎', '表单引擎','门户引擎')
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ UNION
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ select distinct m.menu_id,
|
|
|
|
+ m.parent_id,
|
|
|
|
+ m.menu_name,
|
|
|
|
+ m.path,
|
|
|
|
+ m.component,
|
|
|
|
+ m.`query`,
|
|
|
|
+ m.visible,
|
|
|
|
+ m.status,
|
|
|
|
+ ifnull(m.perms, '') as perms,
|
|
|
|
+ m.is_frame,
|
|
|
|
+ m.is_cache,
|
|
|
|
+ m.menu_type,
|
|
|
|
+ m.icon,
|
|
|
|
+ m.order_num,
|
|
|
|
+ m.create_time
|
|
|
|
+ from sys_tenant_menu tm
|
|
|
|
+ left join sys_menu m on
|
|
|
|
+ tm.menu_id = m.menu_id
|
|
|
|
+ where m.menu_type in ('M', 'C')
|
|
|
|
+ and m.status = 0
|
|
|
|
+ and tm.tenant_id = #{tenantId}
|
|
|
|
+ and m.parent_id in (select menu_id
|
|
|
|
+ from sys_menu
|
|
|
|
+ where menu_name in ("数据引擎", "流程引擎", "表单引擎","门户引擎"))
|
|
|
|
+
|
|
</select>
|
|
</select>
|
|
-
|
|
|
|
|
|
+
|
|
<select id="selectMenuListByUserId" parameterType="SysMenu" resultMap="SysMenuResult">
|
|
<select id="selectMenuListByUserId" parameterType="SysMenu" resultMap="SysMenuResult">
|
|
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.`query`, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.is_cache, m.menu_type, m.icon, m.order_num, m.create_time,t.tenant_name
|
|
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.`query`, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.is_cache, m.menu_type, m.icon, m.order_num, m.create_time,t.tenant_name
|
|
from sys_menu m
|
|
from sys_menu m
|
|
@@ -105,72 +155,72 @@
|
|
LEFT JOIN sys_tenant t on t.tenant_id = u.tenant_id
|
|
LEFT JOIN sys_tenant t on t.tenant_id = u.tenant_id
|
|
where ur.user_id = #{params.userId}
|
|
where ur.user_id = #{params.userId}
|
|
<if test="menuName != null and menuName != ''">
|
|
<if test="menuName != null and menuName != ''">
|
|
- AND m.menu_name like concat('%', #{menuName}, '%')
|
|
|
|
|
|
+ AND m.menu_name like concat('%', #{menuName}, '%')
|
|
</if>
|
|
</if>
|
|
<if test="visible != null and visible != ''">
|
|
<if test="visible != null and visible != ''">
|
|
- AND m.visible = #{visible}
|
|
|
|
|
|
+ AND m.visible = #{visible}
|
|
</if>
|
|
</if>
|
|
<if test="status != null and status != ''">
|
|
<if test="status != null and status != ''">
|
|
- AND m.status = #{status}
|
|
|
|
|
|
+ AND m.status = #{status}
|
|
</if>
|
|
</if>
|
|
<if test="tenantName != null and tenantName != ''">
|
|
<if test="tenantName != null and tenantName != ''">
|
|
AND t.tenant_name like concat('%', #{tenantName}, '%')
|
|
AND t.tenant_name like concat('%', #{tenantName}, '%')
|
|
</if>
|
|
</if>
|
|
order by m.parent_id, m.order_num
|
|
order by m.parent_id, m.order_num
|
|
</select>
|
|
</select>
|
|
-
|
|
|
|
- <select id="selectMenuTreeByUserId" parameterType="Long" resultMap="SysMenuResult">
|
|
|
|
|
|
+
|
|
|
|
+ <select id="selectMenuTreeByUserId" parameterType="Long" resultMap="SysMenuResult">
|
|
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.`query`, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.is_cache, m.menu_type, m.icon, m.order_num, m.create_time
|
|
select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.`query`, m.visible, m.status, ifnull(m.perms,'') as perms, m.is_frame, m.is_cache, m.menu_type, m.icon, m.order_num, m.create_time
|
|
from sys_menu m
|
|
from sys_menu m
|
|
- left join sys_role_menu rm on m.menu_id = rm.menu_id
|
|
|
|
- left join sys_user_role ur on rm.role_id = ur.role_id
|
|
|
|
- left join sys_role ro on ur.role_id = ro.role_id
|
|
|
|
- left join sys_user u on ur.user_id = u.user_id
|
|
|
|
|
|
+ left join sys_role_menu rm on m.menu_id = rm.menu_id
|
|
|
|
+ left join sys_user_role ur on rm.role_id = ur.role_id
|
|
|
|
+ left join sys_role ro on ur.role_id = ro.role_id
|
|
|
|
+ left join sys_user u on ur.user_id = u.user_id
|
|
where u.user_id = #{userId} and m.menu_type in ('M', 'C') and m.status = 0 AND ro.status = 0
|
|
where u.user_id = #{userId} and m.menu_type in ('M', 'C') and m.status = 0 AND ro.status = 0
|
|
order by m.parent_id, m.order_num
|
|
order by m.parent_id, m.order_num
|
|
</select>
|
|
</select>
|
|
-
|
|
|
|
|
|
+
|
|
<select id="selectMenuListByRoleId" resultType="Long">
|
|
<select id="selectMenuListByRoleId" resultType="Long">
|
|
select m.menu_id
|
|
select m.menu_id
|
|
from sys_menu m
|
|
from sys_menu m
|
|
- left join sys_role_menu rm on m.menu_id = rm.menu_id
|
|
|
|
- where rm.role_id = #{roleId}
|
|
|
|
- <if test="menuCheckStrictly">
|
|
|
|
- and m.menu_id not in (select m.parent_id from sys_menu m inner join sys_role_menu rm on m.menu_id = rm.menu_id and rm.role_id = #{roleId})
|
|
|
|
- </if>
|
|
|
|
|
|
+ left join sys_role_menu rm on m.menu_id = rm.menu_id
|
|
|
|
+ where rm.role_id = #{roleId}
|
|
|
|
+ <if test="menuCheckStrictly">
|
|
|
|
+ and m.menu_id not in (select m.parent_id from sys_menu m inner join sys_role_menu rm on m.menu_id = rm.menu_id and rm.role_id = #{roleId})
|
|
|
|
+ </if>
|
|
order by m.parent_id, m.order_num
|
|
order by m.parent_id, m.order_num
|
|
</select>
|
|
</select>
|
|
-
|
|
|
|
|
|
+
|
|
<select id="selectMenuPerms" resultType="String">
|
|
<select id="selectMenuPerms" resultType="String">
|
|
select distinct m.perms
|
|
select distinct m.perms
|
|
from sys_menu m
|
|
from sys_menu m
|
|
- left join sys_role_menu rm on m.menu_id = rm.menu_id
|
|
|
|
- left join sys_user_role ur on rm.role_id = ur.role_id
|
|
|
|
|
|
+ left join sys_role_menu rm on m.menu_id = rm.menu_id
|
|
|
|
+ left join sys_user_role ur on rm.role_id = ur.role_id
|
|
</select>
|
|
</select>
|
|
|
|
|
|
<select id="selectMenuPermsByUserId" parameterType="Long" resultType="String">
|
|
<select id="selectMenuPermsByUserId" parameterType="Long" resultType="String">
|
|
select distinct m.perms
|
|
select distinct m.perms
|
|
from sys_menu m
|
|
from sys_menu m
|
|
- left join sys_role_menu rm on m.menu_id = rm.menu_id
|
|
|
|
- left join sys_user_role ur on rm.role_id = ur.role_id
|
|
|
|
- left join sys_role r on r.role_id = ur.role_id
|
|
|
|
|
|
+ left join sys_role_menu rm on m.menu_id = rm.menu_id
|
|
|
|
+ left join sys_user_role ur on rm.role_id = ur.role_id
|
|
|
|
+ left join sys_role r on r.role_id = ur.role_id
|
|
where m.status = '0' and r.status = '0' and ur.user_id = #{userId}
|
|
where m.status = '0' and r.status = '0' and ur.user_id = #{userId}
|
|
</select>
|
|
</select>
|
|
-
|
|
|
|
|
|
+
|
|
<select id="selectMenuPermsByRoleId" parameterType="Long" resultType="String">
|
|
<select id="selectMenuPermsByRoleId" parameterType="Long" resultType="String">
|
|
select distinct m.perms
|
|
select distinct m.perms
|
|
from sys_menu m
|
|
from sys_menu m
|
|
- left join sys_role_menu rm on m.menu_id = rm.menu_id
|
|
|
|
|
|
+ left join sys_role_menu rm on m.menu_id = rm.menu_id
|
|
where m.status = '0' and rm.role_id = #{roleId}
|
|
where m.status = '0' and rm.role_id = #{roleId}
|
|
</select>
|
|
</select>
|
|
-
|
|
|
|
|
|
+
|
|
<select id="selectMenuById" parameterType="Long" resultMap="SysMenuResult">
|
|
<select id="selectMenuById" parameterType="Long" resultMap="SysMenuResult">
|
|
<include refid="selectMenuVo"/>
|
|
<include refid="selectMenuVo"/>
|
|
where menu_id = #{menuId}
|
|
where menu_id = #{menuId}
|
|
</select>
|
|
</select>
|
|
-
|
|
|
|
|
|
+
|
|
<select id="hasChildByMenuId" resultType="Integer">
|
|
<select id="hasChildByMenuId" resultType="Integer">
|
|
- select count(1) from sys_menu where parent_id = #{menuId}
|
|
|
|
|
|
+ select count(1) from sys_menu where parent_id = #{menuId}
|
|
</select>
|
|
</select>
|
|
|
|
|
|
<select id="hasChildByMenuIdBatchRemove" resultType="Integer" parameterType="java.util.List">
|
|
<select id="hasChildByMenuIdBatchRemove" resultType="Integer" parameterType="java.util.List">
|
|
@@ -180,33 +230,33 @@
|
|
</foreach>
|
|
</foreach>
|
|
</select>
|
|
</select>
|
|
|
|
|
|
-<!-- <include refid="selectMenuVo"/>-->
|
|
|
|
|
|
+ <!-- <include refid="selectMenuVo"/>-->
|
|
<select id="checkMenuNameUnique" parameterType="SysMenu" resultMap="SysMenuResult">
|
|
<select id="checkMenuNameUnique" parameterType="SysMenu" resultMap="SysMenuResult">
|
|
- SELECT sys.menu_id,
|
|
|
|
- sys.menu_name,
|
|
|
|
- sys.parent_id,
|
|
|
|
- sys.order_num,
|
|
|
|
- sys.path,
|
|
|
|
- sys.component,
|
|
|
|
- sys.`query`,
|
|
|
|
- sys.is_frame,
|
|
|
|
- sys.is_cache,
|
|
|
|
- sys.menu_type,
|
|
|
|
- sys.visible,
|
|
|
|
- sys.STATUS,
|
|
|
|
- ifnull(sys.perms, '') AS perms,
|
|
|
|
- sys.icon,
|
|
|
|
- sys.create_time
|
|
|
|
- FROM sys_menu AS sys
|
|
|
|
- LEFT JOIN sys_tenant_menu AS tenant ON sys.menu_id = tenant.menu_id
|
|
|
|
- WHERE sys.menu_name = #{menuName}
|
|
|
|
- AND sys.parent_id = #{parentId}
|
|
|
|
- <if test="tenantId != null and tenantId != ''">
|
|
|
|
- AND tenant.tenant_id = #{tenantId}
|
|
|
|
- </if>
|
|
|
|
- LIMIT 1
|
|
|
|
- </select>
|
|
|
|
-
|
|
|
|
|
|
+ SELECT sys.menu_id,
|
|
|
|
+ sys.menu_name,
|
|
|
|
+ sys.parent_id,
|
|
|
|
+ sys.order_num,
|
|
|
|
+ sys.path,
|
|
|
|
+ sys.component,
|
|
|
|
+ sys.`query`,
|
|
|
|
+ sys.is_frame,
|
|
|
|
+ sys.is_cache,
|
|
|
|
+ sys.menu_type,
|
|
|
|
+ sys.visible,
|
|
|
|
+ sys.STATUS,
|
|
|
|
+ ifnull(sys.perms, '') AS perms,
|
|
|
|
+ sys.icon,
|
|
|
|
+ sys.create_time
|
|
|
|
+ FROM sys_menu AS sys
|
|
|
|
+ LEFT JOIN sys_tenant_menu AS tenant ON sys.menu_id = tenant.menu_id
|
|
|
|
+ WHERE sys.menu_name = #{menuName}
|
|
|
|
+ AND sys.parent_id = #{parentId}
|
|
|
|
+ <if test="tenantId != null and tenantId != ''">
|
|
|
|
+ AND tenant.tenant_id = #{tenantId}
|
|
|
|
+ </if>
|
|
|
|
+ LIMIT 1
|
|
|
|
+ </select>
|
|
|
|
+
|
|
<update id="updateMenu" parameterType="SysMenu">
|
|
<update id="updateMenu" parameterType="SysMenu">
|
|
update sys_menu
|
|
update sys_menu
|
|
<set>
|
|
<set>
|
|
@@ -269,9 +319,9 @@
|
|
sysdate()
|
|
sysdate()
|
|
)
|
|
)
|
|
</insert>
|
|
</insert>
|
|
-
|
|
|
|
|
|
+
|
|
<delete id="deleteMenuById" parameterType="Long">
|
|
<delete id="deleteMenuById" parameterType="Long">
|
|
- delete from sys_menu where menu_id = #{menuId}
|
|
|
|
|
|
+ delete from sys_menu where menu_id = #{menuId}
|
|
</delete>
|
|
</delete>
|
|
|
|
|
|
<delete id="batchDeleteMenuById" parameterType="java.util.List">
|
|
<delete id="batchDeleteMenuById" parameterType="java.util.List">
|
|
@@ -317,4 +367,6 @@
|
|
</foreach>
|
|
</foreach>
|
|
</select>
|
|
</select>
|
|
|
|
|
|
-</mapper>
|
|
|
|
|
|
+</mapper>
|
|
|
|
+
|
|
|
|
+
|