using YBEE.EQM.Core; namespace YBEE.EQM.Application; /// /// 缺测替补管理服务(用于中心管理) /// public interface IExamAbsentReplaceCenterService { /// /// 分页查询监测缺测替补列表 /// /// /// Task> QueryPageList(ExamAbsentReplacePageInput input); /// /// 获取状态数量 /// /// Task> QueryStatusCount(ExamAbsentReplacePageInput input); /// /// 导出数据表格(简表) /// /// /// Task<(string fileName, byte[] fileBytes)> ExportSimple(ExamAbsentReplacePageInput input); /// /// 导出数据表格(完整) /// /// /// Task<(string fileName, byte[] fileBytes)> ExportFull(ExamAbsentReplacePageInput input); }