xiangpei
2025-05-14 47cd9ecc0eff38ffe6b3b794b2bf197e958f4403
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mindskip.xzs.repository;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mindskip.xzs.domain.Feedback;
import com.mindskip.xzs.domain.vo.FeedbackVO;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
 * @author gonghl
 * @description 针对表【t_feedback(错题反馈)】的数据库操作Mapper
 * @createDate 2024-05-07 15:52:33
 * @Entity com.mindskip.xzs.feedback.TFeedback
 */
@Mapper
public interface FeedbackMapper extends BaseMapper<Feedback> {
 
    List<FeedbackVO> feedbackPage();
}