refactor: 删除无用代码

This commit is contained in:
郝先瑞 2022-06-01 23:50:34 +08:00
parent 744b1b546d
commit a679b6fdd9

View File

@ -21,14 +21,6 @@
</collection>
</resultMap>
<sql id="Base_Column_List">
id
,name,parent_id,
path,component,redirect,
icon,sort,visible,
gmt_create,gmt_modified
</sql>
<select id="listRoutes" resultMap="BaseResultMap">
select t1.id,
t1.name,
@ -44,7 +36,6 @@
from sys_menu t1
left join sys_role_menu t2 on t1.id = t2.menu_id
left join sys_role t3 on t2.role_id = t3.id
where t1.visible =${@com.youlai.common.constant.GlobalConstants@STATUS_YES}
order by t1.sort asc
</select>
</mapper>