package com.mzl.flower.service.comment; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.mzl.flower.dto.request.comment.CreateFlowerCommentBatchDTO; import com.mzl.flower.dto.request.comment.CreateFlowerCommentDTO; import com.mzl.flower.dto.request.comment.QueryFlowerCommentDTO; import com.mzl.flower.dto.request.comment.UpdateFlowerCommentDTO; import com.mzl.flower.dto.response.comment.FlowerCommentStatisVO; import com.mzl.flower.dto.response.comment.FlowerCommentVO; import com.mzl.flower.entity.FlowerCommentDO; import com.baomidou.mybatisplus.extension.service.IService; import java.math.BigDecimal; import java.util.List; /** *
* 商品评论表 服务类 *
* * @author @TaoJie * @since 2024-09-29 */ public interface FlowerCommentService extends IService