|
|
@@ -29,11 +29,11 @@
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectMenuVo">
|
|
|
- select menu_id, menu_name, parent_id, order_num, path, component, `query`, route_name, 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, route_name, is_frame, is_cache, menu_type, visible, status, ifnull(perms,'') as perms, icon, create_time
|
|
|
from sys_menu
|
|
|
- </sql>
|
|
|
-
|
|
|
- <select id="selectMenuList" parameterType="SysMenu" resultMap="SysMenuResult">
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectMenuList" parameterType="SysMenu" resultMap="SysMenuResult">
|
|
|
<include refid="selectMenuVo"/>
|
|
|
<where>
|
|
|
<if test="menuName != null and menuName != ''">
|
|
|
@@ -43,96 +43,96 @@
|
|
|
AND visible = #{visible}
|
|
|
</if>
|
|
|
<if test="status != null and status != ''">
|
|
|
- AND status = #{status}
|
|
|
+ AND status = #{status}::integer
|
|
|
</if>
|
|
|
</where>
|
|
|
order by parent_id, order_num
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<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.route_name, 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
|
|
|
order by m.parent_id, m.order_num
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<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
|
|
|
+ select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.query, m.route_name, 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
|
|
|
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
|
|
|
where ur.user_id = #{params.userId}
|
|
|
<if test="menuName != null and menuName != ''">
|
|
|
- AND m.menu_name like concat('%', #{menuName}, '%')
|
|
|
+ AND m.menu_name like concat('%', #{menuName}, '%')
|
|
|
</if>
|
|
|
<if test="visible != null and visible != ''">
|
|
|
- AND m.visible = #{visible}
|
|
|
+ AND m.visible = #{visible}
|
|
|
</if>
|
|
|
<if test="status != null and status != ''">
|
|
|
- AND m.status = #{status}
|
|
|
+ AND m.status = #{status}::integer
|
|
|
</if>
|
|
|
order by m.parent_id, m.order_num
|
|
|
</select>
|
|
|
-
|
|
|
- <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 id="selectMenuTreeByUserId" parameterType="Long" resultMap="SysMenuResult">
|
|
|
+ select distinct m.menu_id, m.parent_id, m.menu_name, m.path, m.component, m.query, m.route_name, 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
|
|
|
- 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
|
|
|
+ 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'
|
|
|
order by m.parent_id, m.order_num
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<select id="selectMenuListByRoleId" resultType="Long">
|
|
|
select m.menu_id
|
|
|
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
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<select id="selectMenuPerms" resultType="String">
|
|
|
select distinct m.perms
|
|
|
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 id="selectMenuPermsByUserId" parameterType="Long" resultType="String">
|
|
|
select distinct m.perms
|
|
|
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}
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<select id="selectMenuPermsByRoleId" parameterType="Long" resultType="String">
|
|
|
select distinct m.perms
|
|
|
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}
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<select id="selectMenuById" parameterType="Long" resultMap="SysMenuResult">
|
|
|
<include refid="selectMenuVo"/>
|
|
|
where menu_id = #{menuId}
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<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 id="checkMenuNameUnique" parameterType="SysMenu" resultMap="SysMenuResult">
|
|
|
<include refid="selectMenuVo"/>
|
|
|
where menu_name=#{menuName} and parent_id = #{parentId} limit 1
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<update id="updateMenu" parameterType="SysMenu">
|
|
|
update sys_menu
|
|
|
<set>
|
|
|
@@ -141,17 +141,18 @@
|
|
|
<if test="orderNum != null">order_num = #{orderNum},</if>
|
|
|
<if test="path != null and path != ''">path = #{path},</if>
|
|
|
<if test="component != null">component = #{component},</if>
|
|
|
- <if test="query != null">`query` = #{query},</if>
|
|
|
+ <if test="query != null">query = #{query},</if>
|
|
|
+ <if test="routeName != null">route_name = #{routeName},</if>
|
|
|
<if test="isFrame != null and isFrame != ''">is_frame = #{isFrame},</if>
|
|
|
<if test="isCache != null and isCache != ''">is_cache = #{isCache},</if>
|
|
|
<if test="menuType != null and menuType != ''">menu_type = #{menuType},</if>
|
|
|
<if test="visible != null">visible = #{visible},</if>
|
|
|
- <if test="status != null">status = #{status},</if>
|
|
|
+ <if test="status != null">status = #{status}::integer,</if>
|
|
|
<if test="perms !=null">perms = #{perms},</if>
|
|
|
<if test="icon !=null and icon != ''">icon = #{icon},</if>
|
|
|
<if test="remark != null and remark != ''">remark = #{remark},</if>
|
|
|
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
|
|
|
- update_time = sysdate()
|
|
|
+ update_time = current_timestamp
|
|
|
</set>
|
|
|
where menu_id = #{menuId}
|
|
|
</update>
|
|
|
@@ -164,7 +165,8 @@
|
|
|
<if test="orderNum != null">order_num,</if>
|
|
|
<if test="path != null and path != ''">path,</if>
|
|
|
<if test="component != null and component != ''">component,</if>
|
|
|
- <if test="query != null and query != ''">`query`,</if>
|
|
|
+ <if test="query != null and query != ''">query,</if>
|
|
|
+ <if test="routeName != null">route_name,</if>
|
|
|
<if test="isFrame != null and isFrame != ''">is_frame,</if>
|
|
|
<if test="isCache != null and isCache != ''">is_cache,</if>
|
|
|
<if test="menuType != null and menuType != ''">menu_type,</if>
|
|
|
@@ -183,21 +185,22 @@
|
|
|
<if test="path != null and path != ''">#{path},</if>
|
|
|
<if test="component != null and component != ''">#{component},</if>
|
|
|
<if test="query != null and query != ''">#{query},</if>
|
|
|
- <if test="isFrame != null and isFrame != ''">#{isFrame},</if>
|
|
|
- <if test="isCache != null and isCache != ''">#{isCache},</if>
|
|
|
+ <if test="routeName != null">#{routeName},</if>
|
|
|
+ <if test="isFrame != null and isFrame != ''">#{isFrame}::integer,</if>
|
|
|
+ <if test="isCache != null and isCache != ''">#{isCache}::integer,</if>
|
|
|
<if test="menuType != null and menuType != ''">#{menuType},</if>
|
|
|
<if test="visible != null">#{visible},</if>
|
|
|
- <if test="status != null">#{status},</if>
|
|
|
+ <if test="status != null">#{status}::integer,</if>
|
|
|
<if test="perms !=null and perms != ''">#{perms},</if>
|
|
|
<if test="icon != null and icon != ''">#{icon},</if>
|
|
|
<if test="remark != null and remark != ''">#{remark},</if>
|
|
|
<if test="createBy != null and createBy != ''">#{createBy},</if>
|
|
|
- sysdate()
|
|
|
+ current_timestamp
|
|
|
)
|
|
|
</insert>
|
|
|
-
|
|
|
+
|
|
|
<delete id="deleteMenuById" parameterType="Long">
|
|
|
- delete from sys_menu where menu_id = #{menuId}
|
|
|
+ delete from sys_menu where menu_id = #{menuId}
|
|
|
</delete>
|
|
|
|
|
|
</mapper>
|