修改论坛评论

This commit is contained in:
fkf
2023-04-30 16:59:55 +08:00
parent f24f98e876
commit 079066ee41

View File

@@ -6,6 +6,9 @@
</select>
<select id="selectSysForumCommentOne" resultType="com.yxt.demo.system.api.sys_forum_comment.SysForumComment">
select * from sys_forum_comment where sid = #{sid}
select f.id,f.sid,f.createBySid,f.forumSid,f.content,i.name from sys_forum_comment f
left join sys_user i
on f.createBySid = i.sid
where f.sid = #{sid}
</select>
</mapper>