StudentImportService.java 284 B

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