| package cc.mrbird.febs.mall.mapper; | 
|   | 
| import cc.mrbird.febs.mall.dto.AdminMallGoodsCommentDto; | 
| import cc.mrbird.febs.mall.entity.MallGoodsComment; | 
| import cc.mrbird.febs.mall.vo.AdminMallGoodsCommentVo; | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
| import com.baomidou.mybatisplus.core.metadata.IPage; | 
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | 
| import org.apache.ibatis.annotations.Param; | 
|   | 
| public interface MallGoodsCommentMapper extends BaseMapper<MallGoodsComment> { | 
|   | 
|     IPage<AdminMallGoodsCommentVo> getCommentListInPage(Page<AdminMallGoodsCommentVo> page, @Param("record")AdminMallGoodsCommentDto adminMallGoodsCommentDto); | 
|   | 
| } |