fix selectPostListByUserId方法出参调整为Long

This commit is contained in:
zendwang
2021-12-02 20:13:47 +08:00
parent f30aa02e7c
commit 209654fdff
4 changed files with 5 additions and 5 deletions

View File

@ -29,7 +29,7 @@
from sys_post
</sql>
<select id="selectPostListByUserId" parameterType="Long" resultType="Integer">
<select id="selectPostListByUserId" parameterType="Long" resultType="Long">
select p.post_id
from sys_post p
left join sys_user_post up on up.post_id = p.post_id
@ -45,4 +45,4 @@
where u.user_name = #{userName}
</select>
</mapper>
</mapper>