fix
Hentua
2023-08-24 b48d191237e4102dbbd3ab43f8e51c4378f64c29
src/main/resources/mapper/modules/MallNewsInfoMapper.xml
@@ -14,4 +14,17 @@
        order by a.CREATED_TIME desc
    </select>
    <select id="selectNewsVoInPage" resultType="cc.mrbird.febs.mall.vo.NewsListVo">
        select * from mall_news_info
        <where>
            1=1
            <if test="record.categoryId != null">
                and category_id=#{record.categoryId}
            </if>
            <if test="record.isTop != null">
                and is_top=#{record.isTop}
            </if>
        </where>
        order by CREATED_TIME desc
    </select>
</mapper>