using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 监测教师管理服务
///
public interface IExamTeacherService
{
#region 批量导入
///
/// 上传监测教师批量导入文件
///
///
///
///
Task> Upload(string filePath, int examPlanId);
///
/// 批量导入监测教师
///
///
///
Task Import(ImportExamTeacherInput input);
#endregion
#region 创建编辑
///
/// 添加监测教师
///
///
///
Task Add(AddExamTeacherInput input);
///
/// 更新监测教师
///
///
///
Task Update(UpdateExamTeacherInput input);
///
/// 删除监测教师
///
///
///
Task Del(BaseId input);
///
/// 清空监测教师
///
///
///
Task Clear(ClearExamTeacherInput input);
#endregion
#region 查询统计
///
/// 分页查询监测教师列表
///
///
///
Task> QueryPageList(ExamTeacherPageInput input);
#endregion
}