linwe
2023-11-12 8d8c7da4e91028fc877f101dcd244bef3e18c197
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.springblade.modules.article.mapper.ArticleCommentMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="articleCommentResultMap" type="org.springblade.modules.article.entity.ArticleCommentEntity">
        <result column="id" property="id"/>
        <result column="article_id" property="articleId"/>
        <result column="content" property="content"/>
        <result column="user_id" property="userId"/>
        <result column="reply_id" property="replyId"/>
        <result column="reply_time" property="replyTime"/>
        <result column="topping" property="topping"/>
        <result column="isexamine" property="isexamine"/>
    </resultMap>
 
 
    <select id="selectArticleCommentPage" resultMap="articleCommentResultMap">
        select * from jczz_article_comment where is_deleted = 0
    </select>
 
 
</mapper>