package cn.com.qmth.scancentral.service; import cn.com.qmth.scancentral.entity.StudentEntity; import cn.com.qmth.scancentral.enums.ExamMode; public interface ToolExportService { void studentCheck(Long studentId); void studentFileCopy(Long studentId, ExamMode examMode); String getCetSliceUri(Long examId, String examNumber, String sliceName); void studentCheckCet(StudentEntity student); }