package com.qmth.exam.reserve.service; import java.io.InputStream; import com.baomidou.mybatisplus.extension.service.IService; import com.qmth.exam.reserve.entity.StudentImportTaskEntity; public interface StudentImportTaskService extends IService { void importStudent(Long operateId, String filePath, InputStream inputStream); }