update mybatis-plus 3.5.1 => 3.5.2 解决新版本兼容性问题 关键字冲突修改

This commit is contained in:
疯狂的狮子li
2022-06-01 13:06:42 +08:00
parent e9f29cd147
commit da0c86dd54
6 changed files with 24 additions and 24 deletions

View File

@ -10,8 +10,8 @@
</resultMap>
<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}
inner join sys_user_role sur
on u.user_id = sur.user_id and sur.role_id = #{roleId}
</select>
</mapper>