12345678910111213 |
- package cn.com.qmth.scancentral.service;
- import org.springframework.web.multipart.MultipartFile;
- import java.util.Map;
- public interface StudentImportService {
- Long studentImport(Long examId, MultipartFile file);
- Map<String, Object> studentImportProgress(Long taskId);
- }
|