MCPcopy Create free account
hub / github.com/L1yp/van-app / MenuMapper

Interface MenuMapper

src/main/java/com/l1yp/mapper/system/MenuMapper.java:10–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8import java.util.Set;
9
10public interface MenuMapper extends BaseMapper<Menu> {
11 @Select("""
12 SELECT
13 DISTINCT rm.menu_id
14 FROM sys_user_role ur
15 INNER JOIN sys_role_menu rm ON ur.role_id = rm.role_id AND ur.uid = #{uid}
16 """)
17 List<String> selectUserRoleMenuList(String uid);
18
19
20}

Callers 1

findUserMenuIdListMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected