完善社区模块

This commit is contained in:
苏元皓
2024-09-01 16:55:58 +08:00
parent dda2cdfdc1
commit bde024527f
15 changed files with 352 additions and 106 deletions

View File

@@ -8,6 +8,7 @@
<id property="commentId" column="comment_id" jdbcType="BIGINT"/>
<result property="userOpenid" column="user_openid" jdbcType="VARCHAR"/>
<result property="postId" column="post_id" jdbcType="BIGINT"/>
<result property="tutorialId" column="tutorialId" jdbcType="BIGINT"/>
<result property="content" column="content" jdbcType="VARCHAR"/>
<result property="parentCommentId" column="parent_comment_id" jdbcType="BIGINT"/>
<result property="isDeleted" column="is_deleted" jdbcType="TINYINT"/>
@@ -19,7 +20,7 @@
</resultMap>
<sql id="Base_Column_List">
comment_id, user_openid, post_id, content,
comment_id, user_openid, post_id, tutorialId, content,
parent_comment_id, is_deleted, created_at, updated_at,
mentioned_user_id, image_urls, video_url
</sql>