| package com.mzl.flower.mapper.content; | 
|   | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page; | 
| import com.mzl.flower.dto.request.content.QueryFeedBackDTO; | 
| import com.mzl.flower.dto.response.content.FeedbackDTO; | 
| import com.mzl.flower.entity.content.Feedback; | 
| import org.apache.ibatis.annotations.Param; | 
| import org.springframework.stereotype.Repository; | 
|   | 
| import java.util.List; | 
|   | 
| @Repository | 
| public interface FeedbackMapper extends BaseMapper<Feedback> { | 
|   | 
|     List<FeedbackDTO> queryPage(@Param("dto") QueryFeedBackDTO dto, Page page); | 
| } |