🐛 评论模块点击头像跳转个人主页问题修复
This commit is contained in:
parent
2fe7a2a6b0
commit
90b3492307
@ -33,6 +33,7 @@
|
|||||||
<result column="id" property="idUser"/>
|
<result column="id" property="idUser"/>
|
||||||
<result column="nickname" property="userNickname"/>
|
<result column="nickname" property="userNickname"/>
|
||||||
<result column="avatar_url" property="userAvatarURL"/>
|
<result column="avatar_url" property="userAvatarURL"/>
|
||||||
|
<result column="account" property="userAccount"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
<update id="updateCommentSharpUrl">
|
<update id="updateCommentSharpUrl">
|
||||||
update forest_comment set comment_sharp_url = #{commentSharpUrl} where id = #{idComment}
|
update forest_comment set comment_sharp_url = #{commentSharpUrl} where id = #{idComment}
|
||||||
@ -41,9 +42,9 @@
|
|||||||
select * from forest_comment where comment_article_id = #{idArticle} order by created_time desc
|
select * from forest_comment where comment_article_id = #{idArticle} order by created_time desc
|
||||||
</select>
|
</select>
|
||||||
<select id="selectAuthor" resultMap="AuthorResultMap">
|
<select id="selectAuthor" resultMap="AuthorResultMap">
|
||||||
select id,nickname,avatar_url from forest_user where id = #{commentAuthorId}
|
select id,nickname,avatar_url,account from forest_user where id = #{commentAuthorId}
|
||||||
</select>
|
</select>
|
||||||
<select id="selectCommentOriginalAuthor" resultMap="AuthorResultMap">
|
<select id="selectCommentOriginalAuthor" resultMap="AuthorResultMap">
|
||||||
select vu.id,vu.nickname,vu.avatar_url from forest_comment vc left join forest_user vu on vu.id = vc.comment_author_id where vc.id = #{commentOriginalCommentId}
|
select vu.id,vu.nickname,vu.avatar_url,vu.account from forest_comment vc left join forest_user vu on vu.id = vc.comment_author_id where vc.id = #{commentOriginalCommentId}
|
||||||
</select>
|
</select>
|
||||||
</mapper>
|
</mapper>
|
Loading…
Reference in New Issue
Block a user