123456789101112 |
- 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<StudentImportTaskEntity> {
- void importStudent(Long operateId, String filePath, InputStream inputStream);
- }
|