cloudroam
2024-09-06 f27bfd01251ea5ff742f0ad175b88c0c16bd5c8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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);
}