namespace YBEE.EQM.Application; /// /// 学生成绩导入服务 /// public interface IExamScoreImportService { /// /// 批量导入前期未上报学生名单的各科成绩 /// /// /// /// Task UploadImportWithoutStudentTotalScore(string filePath, int examPlanId); /// /// 批量导入学生总成绩 /// /// /// /// Task UploadImportStudentTotalScore(string filePath, int examPlanId); /// /// 导入区校合并小题成绩 /// /// /// /// Task<(string, byte[])> UploadImportStudentMinorScore(string filePath, int examPlanId); }