package com.qmth.exam.reserve.service; import java.io.InputStream; import com.baomidou.mybatisplus.extension.service.IService; import com.qmth.boot.core.collection.PageResult; import com.qmth.exam.reserve.bean.PagerReq; import com.qmth.exam.reserve.bean.studentimport.StudentImportTaskVO; import com.qmth.exam.reserve.entity.StudentImportTaskEntity; public interface StudentImportTaskService extends IService { void importStudent(Long operateId, String filePath, InputStream inputStream); PageResult page(PagerReq req); }