linwe
2024-06-28 0b7b8ede524a0b82563fa74ebe234b59c29463ab
src/main/java/org/springblade/modules/article/mapper/ArticleBrowseMapper.xml
@@ -13,7 +13,14 @@
    <select id="selectArticleBrowsePage" resultMap="articleBrowseResultMap">
        select * from jczz_article_browse where is_deleted = 0
        select * from jczz_article_browse
        <where>
            <if test="articleBrowse.id != null "> and id = #{articleBrowse.id}</if>
            <if test="articleBrowse.articleId != null "> and article_id = #{articleBrowse.articleId}</if>
            <if test="articleBrowse.createTime != null "> and create_time = #{articleBrowse.createTime}</if>
            <if test="articleBrowse.createUser != null "> and create_user = #{articleBrowse.createUser}</if>
            <if test="articleBrowse.isDeleted != null "> and is_deleted = #{articleBrowse.isDeleted}</if>
        </where>
    </select>