linwei
2024-02-22 7bcd0d2d7510cb2ba67099cd768e1b2b6d047dc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?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.ArticleLikeMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="articleLikeResultMap" type="org.springblade.modules.article.vo.ArticleLikeVO">
        <result column="id" property="id"/>
        <result column="article_id" property="articleId"/>
        <result column="article_user_id" property="articleUserId"/>
        <result column="create_time" property="createTime"/>
    </resultMap>
 
 
    <select id="selectArticleLikePage" resultMap="articleLikeResultMap">
        select * from jczz_article_like where is_deleted = 0
    </select>
 
 
</mapper>