InterviewQuestionService.java 801 字节
Newer Older
1 2 3 4
package com.kwan.springbootkwan.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.kwan.springbootkwan.entity.InterviewQuestion;
5 6 7
import com.kwan.springbootkwan.entity.dto.InterviewQuestionTypeDTO;

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

/**
 * 面试题(InterviewQuestion)表服务接口
 *
 * @author makejava
 * @since 2023-09-08 16:31:53
 */
public interface InterviewQuestionService extends IService<InterviewQuestion> {
16 17 18 19 20 21
    /**
     * 上传面试题
     *
     * @param path
     * @return
     */
22 23
    boolean uploadFile(String path);

24 25 26 27 28 29
    /**
     * 获取面试题的种类
     *
     * @return
     */
    List<InterviewQuestionTypeDTO> questionType();
30 31 32 33 34 35
    /**
     * 获取所有的类型
     *
     * @return
     */
    List<InterviewQuestionTypeDTO> allQuestionType();
36
}