package com.mindskip.xzs.service; import com.mindskip.xzs.domain.User; import java.io.InputStream; /** * @version 2.2.0 * @description: Excel导入 * Copyright (C), 2020-2021, 武汉思维跳跃科技有限公司 * @date 2021 /9/7 9:45 */ public interface ExcelImportService { /** * 教师端题目导入 * * @param inputStream the input stream * @param outFilePath the out file path * @param user the user */ void teacherQuestionImport(InputStream inputStream, String outFilePath, User user); /** * 管理端题目导入 * * @param inputStream the input stream * @param outFilePath the out file path * @param user the user */ void adminQuestionImport(InputStream inputStream, String outFilePath, User user); /** * 学生端题目导入 * * @param inputStream the input stream * @param outFilePath the out file path * @param user the user */ void studentImport(InputStream inputStream, String outFilePath, User user); }