using YBEE.EQM.Core; namespace YBEE.EQM.Application; /// /// 缺测替补抽样服务 /// public interface IExamSampleReplaceService { /// /// 抽取 /// /// /// Task Sample(SampleExamSampleReplaceInput input); /// /// 标记替补为缺测 /// /// /// Task MarkedReplaceAbsent(int id); /// /// 软删除 /// /// /// Task FakeDelete(BaseId input); /// /// 导出缺测替补名单 /// /// /// Task<(string fileName, byte[] fileBytes)> ExportToOrg(int examPlanId); /// /// 分页查询缺测替补抽样列表 /// /// /// Task> QueryOrgPageList(ExamSampleReplacePageInput input); }