ToolExportService.java 413 B

12345678910111213141516
  1. package cn.com.qmth.scancentral.service;
  2. import cn.com.qmth.scancentral.entity.StudentEntity;
  3. import cn.com.qmth.scancentral.enums.ExamMode;
  4. public interface ToolExportService {
  5. void studentCheck(Long studentId);
  6. void studentFileCopy(Long studentId, ExamMode examMode);
  7. String getCetSliceUri(Long examId, String examNumber, String sliceName);
  8. void studentCheckCet(StudentEntity student);
  9. }