doum
2025-12-12 89029e9ade03f3139c6afcd6bac48d9a668875f3
server/dmmall_service/src/main/java/com/doumee/service/business/impl/CommentServiceImpl.java
@@ -172,13 +172,13 @@
    }
    @Override
    public Integer count(Comment comment) {
    public Long count(Comment comment) {
        QueryWrapper<Comment> wrapper = new QueryWrapper<>(comment);
        return commentMapper.selectCount(wrapper);
    }
    @Override
    public Integer count(Date start, Date end, Integer memberId) {
    public Long count(Date start, Date end, Integer memberId) {
        QueryWrapper<Comment> wrapper = new QueryWrapper<>();
        wrapper.lambda().eq(Comment::getMemberId,memberId)