gongzuming
2024-08-22 1f86ea3a7e0d8ff10b5907dc3f85aafaa2ebd2f0
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);
}