fix 修复 用户绑定角色 与 角色绑定用户 异常 编写错误

This commit is contained in:
疯狂的狮子Li
2022-03-23 22:18:56 +08:00
parent 0488495a34
commit 8cad83a9dc
3 changed files with 5 additions and 3 deletions

View File

@ -8,7 +8,7 @@
<result property="userId" column="user_id"/>
<result property="roleId" column="role_id"/>
</resultMap>
<select id="selectUserIdByRoleId" resultType="Long">
<select id="selectUserIdsByRoleId" resultType="Long">
select u.user_id from sys_user u
inner join sys_user_role ur
on u.user_id = ur.user_id and ur.role_id = #{roleId}