1. 开始迁移 menu 模块,完成 menu 列表的接口

2. 开始迁移 dict 模块,梳理了下整体的表结构,删除无用字段
This commit is contained in:
YunaiV
2021-01-07 21:28:23 +08:00
parent 3bf173d744
commit 74daab066d
29 changed files with 518 additions and 374 deletions

View File

@ -83,11 +83,6 @@
where m.status = '0' and r.status = '0' and ur.user_id = #{userId}
</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>
@ -97,8 +92,4 @@
where menu_name=#{menuName} and parent_id = #{parentId} limit 1
</select>
<delete id="deleteMenuById" parameterType="Long">
delete from sys_menu where menu_id = #{menuId}
</delete>
</mapper>