mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-10-02 20:57:08 +08:00
12 lines
508 B
XML
12 lines
508 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
|
<mapper namespace="top.continew.admin.system.mapper.RoleMenuMapper">
|
|
<select id="selectMenuIdByRoleIds" resultType="java.lang.Long">
|
|
SELECT menu_id
|
|
FROM sys_role_menu
|
|
WHERE role_id IN
|
|
<foreach collection="list" item="roleId" open="(" close=")" separator=",">
|
|
#{roleId}
|
|
</foreach>
|
|
</select>
|
|
</mapper> |