fix
Hentua
2023-06-12 452416e443c95947a52bfeea943d1792fbc6d3a0
src/main/java/cc/mrbird/febs/mall/service/impl/ApiMallGoodsServiceImpl.java
@@ -66,6 +66,9 @@
        objectQueryWrapper.eq("goods_id",id);
        Integer commentCount = mallGoodsCommentMapper.selectCount(objectQueryWrapper);
        mallGoodsDetailsVo.setCommentCount(commentCount);
        int scorePercent = mallGoodsDetailsVo.getScorePercent() == null ? 0 : mallGoodsDetailsVo.getScorePercent();
        mallGoodsDetailsVo.setScorePercentNum(new BigDecimal(scorePercent).multiply(new BigDecimal("0.01")));
        return mallGoodsDetailsVo;
    }