InterviewQuestionMapper.java 579 字节
Newer Older
1 2 3 4
package com.kwan.springbootkwan.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.kwan.springbootkwan.entity.InterviewQuestion;
5 6 7
import com.kwan.springbootkwan.entity.dto.InterviewQuestionTypeDTO;

import java.util.LinkedList;
8 9 10 11 12 13 14 15 16

/**
 * 面试题(InterviewQuestion)表数据库访问层
 *
 * @author makejava
 * @since 2023-09-08 16:31:51
 */
public interface InterviewQuestionMapper extends BaseMapper<InterviewQuestion> {

17 18 19 20 21 22
    /**
     * 获取面试题的种类
     *
     * @return
     */
    LinkedList<InterviewQuestionTypeDTO> questionType();
23 24
}