Administrator
2025-05-16 2c046563d7ebcf827e6d1abad52e4a8cbee8489d
feat(MallGoodsMapper): 评论列表只展示显示状态为 1 的评论

在 MallGoodsMapper.xml 文件中,为评论列表查询添加了显示状态过滤条件。只展示 show_state 为 1 的评论,以确保用户只能看到已审核通过的评论内容。
1 files modified
1 ■■■■ changed files
src/main/resources/mapper/modules/MallGoodsMapper.xml 1 ●●●● patch | view | raw | blame | history
src/main/resources/mapper/modules/MallGoodsMapper.xml
@@ -271,6 +271,7 @@
        from mall_goods_comment a
        left join mall_member b on b.id = a.member_id
        <where>
                                       and a.show_state =1
            <if test="record != null">
                <if test="record.goodsId != null and record.goodsId != ''">
                    and a.goods_id=#{record.goodsId}