package com.kwan.springbootkwan.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.kwan.springbootkwan.entity.InterviewQuestion;
import com.kwan.springbootkwan.entity.dto.InterviewQuestionTypeDTO; import java.util.LinkedList;
/** * 面试题(InterviewQuestion)表数据库访问层 * * @author makejava * @since 2023-09-08 16:31:51 */ public interface InterviewQuestionMapper extends BaseMapper<InterviewQuestion> {
/** * 获取面试题的种类 * * @return */ LinkedList<InterviewQuestionTypeDTO> questionType();
}